2026.8.26.3

Overview

Name zone
Tag 2026.8.26.3
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/existing/dns/zone:2026.8.26.3
Last updated 2026-08-26 07:43:26:+00:00
Created 2026-08-26 07:43:26:+00:00
Digest sha256:5f5d47953972e6b707fa8e10fd995ea12f131411e7a2c2b3acaebd8547fc4edc

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