From e641f30c19f21f038fe7dd5322fb6cacf166e2b9 Mon Sep 17 00:00:00 2001 From: Furqan Agwan <19633375+furqanagwan@users.noreply.github.com> Date: Fri, 17 Jan 2025 13:02:28 +0000 Subject: [PATCH] Added Bicep version of the route table configuration --- templates-bicep/route-table.bicep | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 templates-bicep/route-table.bicep diff --git a/templates-bicep/route-table.bicep b/templates-bicep/route-table.bicep new file mode 100644 index 00000000..386e2ae2 --- /dev/null +++ b/templates-bicep/route-table.bicep @@ -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: {} +}