Skip to content

Commit

Permalink
Added Bicep version of the route table configuration
Browse files Browse the repository at this point in the history
furqanagwan committed Jan 17, 2025
1 parent 86a48b8 commit e641f30
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions templates-bicep/route-table.bicep
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
@description('Name of the Route Table')
param routeTableName string

@description('Indicates whether BGP route propagation is disabled')
param disableBgpRoutePropagation bool

resource routeTable 'Microsoft.Network/routeTables@2024-05-01' = {
name: routeTableName
location: resourceGroup().location
properties: {
disableBgpRoutePropagation: disableBgpRoutePropagation
}
tags: {}
}

0 comments on commit e641f30

Please sign in to comment.