From b41c87d1f1b907a35b13f01aed2eb3b8af4fba81 Mon Sep 17 00:00:00 2001 From: Zach Trocinski Date: Thu, 7 Dec 2023 16:06:30 -0600 Subject: [PATCH] Fixed express route gateway param descriptions --- .../hubNetworking/generateddocs/hubNetworking.bicep.md | 10 +--------- .../bicep/modules/hubNetworking/hubNetworking.bicep | 2 +- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/infra-as-code/bicep/modules/hubNetworking/generateddocs/hubNetworking.bicep.md b/infra-as-code/bicep/modules/hubNetworking/generateddocs/hubNetworking.bicep.md index 805926b0b..e838ebb2e 100644 --- a/infra-as-code/bicep/modules/hubNetworking/generateddocs/hubNetworking.bicep.md +++ b/infra-as-code/bicep/modules/hubNetworking/generateddocs/hubNetworking.bicep.md @@ -41,7 +41,7 @@ parPrivateDnsZoneAutoMergeAzureBackupZone | No | Set Parameter to false to parVirtualNetworkIdToLinkFailover | No | Resource ID of Failover VNet for Private DNS Zone VNet Failover Links parVpnGatewayEnabled | No | Switch to enable/disable VPN virtual network gateway deployment. parVpnGatewayConfig | No | Configuration for VPN virtual network gateway to be deployed. -parExpressRouteGatewayEnabled | No | Switch to enable/disable VPN virtual network gateway deployment. +parExpressRouteGatewayEnabled | No | Switch to enable/disable ExpressRoute virtual network gateway deployment. parExpressRouteGatewayConfig | No | Configuration for ExpressRoute virtual network gateway to be deployed. parTags | No | Tags you would like to be applied to all resources in this module. parTelemetryOptOut | No | Set Parameter to true to Opt-out of deployment telemetry. @@ -327,14 +327,6 @@ Configuration for VPN virtual network gateway to be deployed. - Default value: `@{name=[format('{0}-Vpn-Gateway', parameters('parCompanyPrefix'))]; gatewayType=Vpn; sku=VpnGw1; vpnType=RouteBased; generation=Generation1; enableBgp=False; activeActive=False; enableBgpRouteTranslationForNat=False; enableDnsForwarding=False; bgpPeeringAddress=; bgpsettings=; vpnClientConfiguration=}` -### parExpressRouteGatewayEnabled - -![Parameter Setting](https://img.shields.io/badge/parameter-optional-green?style=flat-square) - -Switch to enable/disable VPN virtual network gateway deployment. - -- Default value: `True` - ### parExpressRouteGatewayConfig ![Parameter Setting](https://img.shields.io/badge/parameter-optional-green?style=flat-square) diff --git a/infra-as-code/bicep/modules/hubNetworking/hubNetworking.bicep b/infra-as-code/bicep/modules/hubNetworking/hubNetworking.bicep index 583110ed0..e926d27c8 100644 --- a/infra-as-code/bicep/modules/hubNetworking/hubNetworking.bicep +++ b/infra-as-code/bicep/modules/hubNetworking/hubNetworking.bicep @@ -267,7 +267,7 @@ param parVpnGatewayConfig object = { vpnClientConfiguration: {} } -@sys.description('Switch to enable/disable VPN virtual network gateway deployment.') +@sys.description('Switch to enable/disable ExpressRoute virtual network gateway deployment.') param parExpressRouteGatewayEnabled bool = true @sys.description('Configuration for ExpressRoute virtual network gateway to be deployed.')