Skip to content

Commit

Permalink
Updated variable names to prevent case clash (#657)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjlewisuk authored Sep 19, 2023
1 parent ef95b74 commit 03bad21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bicep/network.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -189,13 +189,13 @@ var aks_podSubnet = {
}

var aks_subnet = networkSecurityGroups ? union(aks_baseSubnet, nsgAks.outputs.nsgSubnetObj) : aks_baseSubnet
var aks_podsubnet = networkSecurityGroups ? union(aks_podSubnet, nsgAks.outputs.nsgSubnetObj) : aks_podSubnet
var aks_finalPodSubnet = networkSecurityGroups ? union(aks_podSubnet, nsgAks.outputs.nsgSubnetObj) : aks_podSubnet



var subnets = union(
array(aks_subnet),
cniDynamicIpAllocation ? array(aks_podsubnet) : [],
cniDynamicIpAllocation ? array(aks_finalPodSubnet) : [],
azureFirewalls ? array(fw_subnet) : [],
privateLinks ? array(private_link_subnet) : [],
acrPrivatePool ? array(acrpool_subnet) : [],
Expand Down

0 comments on commit 03bad21

Please sign in to comment.