Skip to content

Commit

Permalink
Merge pull request #362 from SkillsFundingAgency/DASD-12525
Browse files Browse the repository at this point in the history
DASD-12525 - Infrastructure Uplift config for route table routes for all Environment
  • Loading branch information
furqanagwan authored Jan 17, 2025
2 parents 86a48b8 + e641f30 commit 9fcf881
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 9fcf881

Please sign in to comment.