File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ resource "azurerm_route_table" "inside" {
225225 name = format (" %s-inside-rt-%d" , local. vnet_name , count. index )
226226 location = var. location
227227 resource_group_name = local. resource_group_name
228- disable_bgp_route_propagation = var. disable_bgp_route_propagation
228+ bgp_route_propagation_enabled = var. bgp_route_propagation_enabled
229229
230230 tags = var. tags
231231
Original file line number Diff line number Diff line change @@ -88,8 +88,8 @@ variable "vnet_cidr" {
8888 default = null
8989}
9090
91- variable "disable_bgp_route_propagation " {
92- description = " Whether to disable BGP route propagation."
91+ variable "bgp_route_propagation_enabled " {
92+ description = " Whether to enable BGP route propagation."
9393 type = bool
94- default = false
94+ default = true
9595}
You can’t perform that action at this time.
0 commit comments