Skip to content

Commit

Permalink
Bastion NSG Conditional Deployment (#606)
Browse files Browse the repository at this point in the history
  • Loading branch information
4pplied authored Aug 10, 2023
1 parent b67b701 commit 800ae63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infra-as-code/bicep/modules/hubNetworking/hubNetworking.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ resource resDdosProtectionPlan 'Microsoft.Network/ddosProtectionPlans@2023-02-01
tags: parTags
}

resource resHubVnet 'Microsoft.Network/virtualNetworks@2023-02-01' = if (parAzBastionEnabled) {
resource resHubVnet 'Microsoft.Network/virtualNetworks@2023-02-01' = {
dependsOn: [
resBastionNsg
]
Expand Down Expand Up @@ -365,7 +365,7 @@ resource resBastionSubnetRef 'Microsoft.Network/virtualNetworks/subnets@2023-02-
name: 'AzureBastionSubnet'
}

resource resBastionNsg 'Microsoft.Network/networkSecurityGroups@2023-02-01' = {
resource resBastionNsg 'Microsoft.Network/networkSecurityGroups@2023-02-01' = if (parAzBastionEnabled) {
name: parAzBastionNsgName
location: parLocation
tags: parTags
Expand Down

0 comments on commit 800ae63

Please sign in to comment.