Skip to content

Commit

Permalink
Updated firewall IP configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethcarnes committed Feb 5, 2024
1 parent f2fa1aa commit 567a773
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bicep/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ module firewall './firewall.bicep' = {
location: location
hubVnetName: hubVnetName
workloadSubnetId: vnets.outputs.workloadSubnetId
firewallPrivateIp: 'your_firewall_private_ip_here' // Replace with actual IP
firewallPrivateIp: '10.0.1.4'
}
dependsOn: [
vnets
Expand Down
1 change: 1 addition & 0 deletions bicep/vnets.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ resource hubVnet 'Microsoft.Network/virtualNetworks@2021-02-01' = {
}
}

// Spoke Virtual Networks
resource spokeVnets 'Microsoft.Network/virtualNetworks@2021-02-01' = [for (spokeVnetDetail, i) in spokeVnetDetails: {
name: spokeVnetDetail.name
location: location
Expand Down

0 comments on commit 567a773

Please sign in to comment.