Overview
|
|
| Name |
zone |
| Tag |
2026.8.31.6 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/existing/dns/zone:2026.8.31.6 |
| Last updated |
2026-08-31 10:49:04:+00:00 |
| Created |
2026-08-31 10:49:04:+00:00 |
| Digest |
sha256:1984922309ca1c6422ef9fadbaaf4f5ef81d4aa8ab025b2555417d66dfd031cb |
Parameters
| Name |
Type |
Required |
Description |
zoneName |
string |
Yes |
The name of the existing DNS zone to manage (e.g., "example.com"). This should correspond to a previously created DNS zone in Azure. |
Outputs
| Name |
Type |
Description |
nameServers |
array |
An array of name servers associated with the existing DNS zone. These name servers are used to delegate the DNS zone. |
zoneName |
string |
The name of the existing DNS zone, as defined in Azure. |
Example
@description('The target environment.')
param env string
@description('The deployment version.')
param version string = '1.0.0.0'
@description('The name of the existing DNS zone to manage (e.g., "example.com"). This should correspond to a previously created DNS zone in Azure.')
param zoneName string
module zone 'br:bicepacrdevwcom.azurecr.io/bicep/modules/existing/dns/zone:2026.8.31.6' = {
name: 'zone${env}${version}'
params: {
zoneName: zoneName
}
}