2026.8.26.3

Overview

Name a
Tag 2026.8.26.3
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/dns/privatezones/a:2026.8.26.3
Last updated 2026-08-26 07:42:35:+00:00
Created 2026-08-26 07:42:35:+00:00
Digest sha256:8a81647cbf48d3bb6c3de6e1dac9126d3711becd1000ca32c7b67e7915f52ce7

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.26.3' = {
    name: 'a${env}${version}'
    params: {
      dnsZoneName: dnsZoneName
      aRecordName: aRecordName
      ipAddress: ipAddress
    }
}