Skip to content

Commit

Permalink
Fix module references
Browse files Browse the repository at this point in the history
  • Loading branch information
oZakari committed Sep 17, 2024
1 parent b4197d9 commit 9a19f82
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var parCompanyPrefix = 'test'
// ---------

@description('Baseline resource configuration')
module baseline_hub_network '../hubNetworking.bicep' = {
module baseline_hub_network '../hubNetworking_multiRegion.bicep' = {
name: 'baseline_hub_network'
params: {
parLocation: location
Expand All @@ -51,7 +51,7 @@ module baseline_hub_network '../hubNetworking.bicep' = {
}

@description('Baseline resource configuration using ExpressRoute')
module baseline_hub_network_with_ER '../hubNetworking.bicep' = {
module baseline_hub_network_with_ER '../hubNetworking_multiRegion.bicep' = {
name: 'baseline_hub_network_with_ER'
params: {
parLocation: location
Expand Down Expand Up @@ -94,7 +94,7 @@ module baseline_hub_network_with_ER '../hubNetworking.bicep' = {
}

@description('Baseline resource configuration using a VPN Gateway')
module baseline_hub_network_with_VPN '../hubNetworking.bicep' = {
module baseline_hub_network_with_VPN '../hubNetworking_multiRegion.bicep' = {
name: 'baseline_hub_network_with_VPN'
params: {
parLocation: location
Expand Down

0 comments on commit 9a19f82

Please sign in to comment.