Skip to content

Commit

Permalink
Fixed pvt dns zones for recovery services (#828)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamasten committed Jan 24, 2024
1 parent c7274f9 commit 3f2b9c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit 3f2b9c8

Please sign in to comment.