Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed pvt dns zones for recovery services #828

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/bicep/mlz.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"_generator": {
"name": "bicep",
"version": "0.24.24.22086",
"templateHash": "2150776309753846228"
"templateHash": "7889693018590170190"
}
},
"parameters": {
Expand Down Expand Up @@ -3589,7 +3589,7 @@
"_generator": {
"name": "bicep",
"version": "0.24.24.22086",
"templateHash": "15825906422669965879"
"templateHash": "7144753336729388863"
}
},
"parameters": {
Expand Down Expand Up @@ -3625,7 +3625,7 @@
{
"name": "privatelink_backup_names",
"count": "[length(items(variables('locations')))]",
"input": "[format('privatelink.backup.{0}.{1}', items(variables('locations'))[copyIndex('privatelink_backup_names')].value.recoveryServicesGeo, variables('cloudSuffix'))]"
"input": "[format('privatelink.{0}.backup.{1}', items(variables('locations'))[copyIndex('privatelink_backup_names')].value.recoveryServicesGeo, variables('cloudSuffix'))]"
}
],
"$fxv#0": {
Expand Down
2 changes: 1 addition & 1 deletion src/bicep/modules/private-dns.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ var privatelink_agentsvc_azure_automation_name = 'privatelink.agentsvc.azure-aut
var privatelink_azure_automation_name = 'privatelink.azure-automation.${automationSuffix}'
var privatelink_avd_name = 'privatelink.wvd.${cloudSuffix}'
var privatelink_avd_global_name = 'privatelink-global.wvd.${cloudSuffix}'
var privatelink_backup_names = [for location in items(locations): 'privatelink.backup.${location.value.recoveryServicesGeo}.${cloudSuffix}']
var privatelink_backup_names = [for location in items(locations): 'privatelink.${location.value.recoveryServicesGeo}.backup.${cloudSuffix}']
var privatelink_file_name = 'privatelink.file.${environment().suffixes.storage}'
var privatelink_queue_name = 'privatelink.queue.${environment().suffixes.storage}'
var privatelink_table_name = 'privatelink.table.${environment().suffixes.storage}'
Expand Down