Skip to content

Commit db17d04

Browse files
committed
Review fixes
1 parent 207e288 commit db17d04

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

modules/vpc/variables.tf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,17 +93,17 @@ variable "network_profile" {
9393
variable "bgp_always_compare_med" {
9494
type = bool
9595
description = "If set to true, the Cloud Router will use MED values from the peer even if the AS paths differ. Default is false."
96-
default = null
96+
default = false
9797
}
9898

9999
variable "bgp_best_path_selection_mode" {
100100
type = string
101-
description = "Specifies the BGP best path selection mode. Valid values are `STANDARD`, `EARLY_EXIT`, `MULTI_EXIT_DISC`. Default is `STANDARD`."
102-
default = null
101+
description = "Specifies the BGP best path selection mode. Valid values are `STANDARD` or `LEGACY`. Default is `STANDARD`."
102+
default = "STANDARD"
103103
}
104104

105105
variable "bgp_inter_region_cost" {
106106
type = string
107-
description = "Specifies the BGP inter-region cost mode. Valid values are `DEFAULT`, `LOW`. Default is `DEFAULT`."
108-
default = null
107+
description = "Specifies the BGP inter-region cost mode. Valid values are `DEFAULT` or `ADD_COST_TO_MED`. Default is `DEFAULT`."
108+
default = "DEFAULT"
109109
}

variables.tf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -215,17 +215,17 @@ variable "network_profile" {
215215
variable "bgp_always_compare_med" {
216216
type = bool
217217
description = "If set to true, the Cloud Router will use MED values from the peer even if the AS paths differ. Default is false."
218-
default = null
218+
default = false
219219
}
220220

221221
variable "bgp_best_path_selection_mode" {
222222
type = string
223-
description = "Specifies the BGP best path selection mode. Valid values are `STANDARD`, `EARLY_EXIT`, `MULTI_EXIT_DISC`. Default is `STANDARD`."
224-
default = null
223+
description = "Specifies the BGP best path selection mode. Valid values are `STANDARD` or `LEGACY`. Default is `STANDARD`."
224+
default = "STANDARD"
225225
}
226226

227227
variable "bgp_inter_region_cost" {
228228
type = string
229-
description = "Specifies the BGP inter-region cost mode. Valid values are `DEFAULT`, `LOW`. Default is `DEFAULT`."
230-
default = null
229+
description = "Specifies the BGP inter-region cost mode. Valid values are `DEFAULT` or `ADD_COST_TO_MED`. Default is `DEFAULT`."
230+
default = "DEFAULT"
231231
}

0 commit comments

Comments
 (0)