2026.8.31.6

Overview

Name a
Tag 2026.8.31.6
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/dns/privatezones/a:2026.8.31.6
Last updated 2026-08-31 10:48:16:+00:00
Created 2026-08-31 10:48:16:+00:00
Digest sha256:3d41852b169d2effbda8d71da0ee46d3aa989504227330113da6ef02b6a3223c

Parameters

Name Type Required Description
dnsZoneName string Yes The name of the private DNS zone
aRecordName string Yes The name of the A record
ipAddress string Yes The IP address of the A record
ttl int No
300
The TTL of the A record

Outputs

Name Type Description

Example

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

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

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

@description('The name of the A record')
param aRecordName string

@description('The IP address of the A record')
param ipAddress string


module a 'br:bicepacrdevwcom.azurecr.io/bicep/modules/dns/privatezones/a:2026.8.31.6' = {
    name: 'a${env}${version}'
    params: {
      dnsZoneName: dnsZoneName
      aRecordName: aRecordName
      ipAddress: ipAddress
    }
}