Skip to content

Commit

Permalink
Add missing base DNS zone
Browse files Browse the repository at this point in the history
  • Loading branch information
janboll committed Aug 29, 2024
1 parent 9f4e1f2 commit b189ab1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions dev-infrastructure/templates/region.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@ resource subscriptionTags 'Microsoft.Resources/tags@2024-03-01' = {
// R E G I O N A L D N S Z O N E
//


resource baseDNSZone 'Microsoft.Network/dnsZones@2018-05-01' = {
name: '${baseDNSZoneName}'
location: 'global'
}


resource regionalZone 'Microsoft.Network/dnsZones@2018-05-01' = {
name: '${regionalDNSSubdomain}.${baseDNSZoneName}'
location: 'global'
Expand Down

0 comments on commit b189ab1

Please sign in to comment.