Skip to content

Commit

Permalink
Match name to bicep
Browse files Browse the repository at this point in the history
  • Loading branch information
simonkurtz-MSFT committed Dec 5, 2024
1 parent b2a694c commit c657829
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scenarios/aca-internal/terraform/modules/02-spoke/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@ module "routeTable" {
nextHopType = "VirtualAppliance"
nextHopIpAddress = var.firewallPrivateIp
},
var.routeSpokeTrafficInternally ? [for prefix in var.vnetAddressPrefixes : {
name = "intTraffic-${prefix}"
var.routeSpokeTrafficInternally ? [for i, prefix in var.vnetAddressPrefixes : {
name = "spokeInternalTraffic-${i}"
addressPrefix = prefix
nextHopType = "VnetLocal"
}] : []
Expand Down

0 comments on commit c657829

Please sign in to comment.