No tags in private DNS zone links
Closed this issue · 2 comments
sergey-netdev commented
What happened? Provide a clear and concise description of the bug, including deployment details.
The private dns zone module does not pass incoming parTags
to resVirtualNetworkLink
and resVirtualNetworkLinkFailover
which causes weird deployment errors if there are polices like "Require a tag and its value on resources" /Microsoft.Authorization/policyDefinitions/1e30110a-5ceb-460c-a204-c1c3969c6d62
in place.
Also, please consider changing the link names, "link-vqlscyvvqtsm4" is very misleading.
Please provide the correlation id associated with your error or bug.
xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
What was the expected outcome?
resource resVirtualNetworkLink 'Microsoft.Network/privateDnsZones/virtualNetworkLinks@2020-06-01' = [for privateDnsZoneName in varPrivateDnsZonesMerge: if (!empty(parVirtualNetworkIdToLink)) {
// name: '${privateDnsZoneName}/${take('link-${uniqueString(parVirtualNetworkIdToLink)}', 80)}'
name: '${privateDnsZoneName}/${take('dns-${parVirtualNetworkNameToLink}-link-${privateDnsZoneName}', 80)}'
location: 'global'
properties: {
registrationEnabled: false
virtualNetwork: {
id: parVirtualNetworkIdToLink
}
}
dependsOn: resPrivateDnsZones
**tags: parTags**
}]
Relevant log output
No response
Check previous GitHub issues
- I have searched the issues for this item and found no duplicate
Code of Conduct
- I agree to follow this project's Code of Conduct
oZakari commented
Hi @sergey-netdev, thanks for raising this. Would you like to submit a PR for this addition?
sergey-netdev commented
Hi @sergey-netdev, thanks for raising this. Would you like to submit a PR for this addition?