2026.9.9.2

Overview

Name zone
Tag 2026.9.9.2
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/existing/dns/zone:2026.9.9.2
Last updated 2026-09-09 12:46:28:+00:00
Created 2026-09-09 12:46:28:+00:00
Digest sha256:fb4292d717eddaace71a54b103b2b0654772e2642f5dd5628f8a819bca91c20d

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.9.9.2' = {
    name: 'zone${env}${version}'
    params: {
      zoneName: zoneName
    }
}