Overview
|
|
| Name |
a |
| Tag |
2026.9.9.2 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/dns/privatezones/a:2026.9.9.2 |
| Last updated |
2026-09-09 12:45:31:+00:00 |
| Created |
2026-09-09 12:45:31:+00:00 |
| Digest |
sha256:b40630d47d245ce6383131fb03035d65985b56ce5bc571d42a381db3bbee6cf4 |
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
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.9.9.2' = {
name: 'a${env}${version}'
params: {
dnsZoneName: dnsZoneName
aRecordName: aRecordName
ipAddress: ipAddress
}
}