2026.9.9.2

Overview

Name privatezone
Tag 2026.9.9.2
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/dns/privatezone:2026.9.9.2
Last updated 2026-09-09 12:46:15:+00:00
Created 2026-09-09 12:46:15:+00:00
Digest sha256:837a05f8fa9d6499b7eb4f200511d87ac269fbc7029763525d7585f1128df637

Parameters

Name Type Required Description
dnsZoneName string Yes Name of the private DNS zone
tags object No
{
}
Tags to apply to the private DNS zone
vnetResourceId string Yes VNet resource ID to link the private DNS zone to
vnetLinkName string No
format('{0}-link', dnsZoneName)
VNet link name
enableRegistration bool No
false
Enable registration for the VNet link

Outputs

Name Type Description
privateDnsZoneId string
privateDnsZoneName string
vnetLinkId string
vnetLinkName string

Example

@description('The target environment.')
param env string

@description('The deployment version.')
param version string = '1.0.0.0'

@description('Name of the private DNS zone')
param dnsZoneName string

@description('VNet resource ID to link the private DNS zone to')
param vnetResourceId string


module privatezone 'br:bicepacrdevwcom.azurecr.io/bicep/modules/dns/privatezone:2026.9.9.2' = {
    name: 'privatezone${env}${version}'
    params: {
      dnsZoneName: dnsZoneName
      vnetResourceId: vnetResourceId
    }
}