2026.8.25.2

Overview

Name zone
Tag 2026.8.25.2
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/existing/dns/zone:2026.8.25.2
Last updated 2026-08-25 09:44:25:+00:00
Created 2026-08-25 09:44:25:+00:00
Digest sha256:96d4ce5923a08da9db0478e4ab72f310348b0e5273094e062acbbe8ad828fe1c

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