2026.8.25.4

Overview

Name zone
Tag 2026.8.25.4
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/existing/dns/zone:2026.8.25.4
Last updated 2026-08-25 10:38:36:+00:00
Created 2026-08-25 10:38:36:+00:00
Digest sha256:988637dc68062e17107dccc1f2af3abbfd037fa943e0393c773cd4414fcbea14

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