Overview
|
|
| Name |
a |
| Tag |
2026.8.25.4 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/dns/privatezones/a:2026.8.25.4 |
| Last updated |
2026-08-25 10:37:46:+00:00 |
| Created |
2026-08-25 10:37:46:+00:00 |
| Digest |
sha256:8f1bcc54285bb53a2670b80d6b3e9fcef1d14e186eaa51469c3f40cd2ee64d86 |
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.8.25.4' = {
name: 'a${env}${version}'
params: {
dnsZoneName: dnsZoneName
aRecordName: aRecordName
ipAddress: ipAddress
}
}