Skip to content

Commit

Permalink
Fixed subnet overlap
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethcarnes committed Feb 14, 2024
1 parent 3fe53c8 commit 22aa84c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bicep/vnets.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ param hubSubnet1Prefix string = '10.0.1.0/24'
param hubSubnet2Prefix string = '10.0.2.0/24'
param spokeVnetDetails array
param AzureFirewallSubnet string = '10.0.0.0/24'
param AzureFirewallManagementSubnet string = '10.0.0.64/26'
// Updated to avoid overlap with AzureFirewallSubnet
param AzureFirewallManagementSubnet string = '10.0.3.0/24'

resource hubVnet 'Microsoft.Network/virtualNetworks@2021-02-01' = {
name: hubVnetName
Expand Down

0 comments on commit 22aa84c

Please sign in to comment.