Skip to content

Commit 7d023e2

Browse files
authored
Add zero_advertised_route_priority attribute to the peer variable
Add zero_advertised_route_priority attribute to the peer variable to match what we do for the peer variable in the interface module.
1 parent af23304 commit 7d023e2

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

modules/interconnect_attachment/variables.tf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,10 @@ variable "interface" {
117117
variable "peer" {
118118
description = "BGP Peer for this attachment."
119119
type = object({
120-
name = string
121-
peer_asn = string
122-
advertised_route_priority = optional(number)
120+
name = string
121+
peer_asn = string
122+
advertised_route_priority = optional(number)
123+
zero_advertised_route_priority = optional(bool)
123124
bfd = optional(object({
124125
session_initialization_mode = string
125126
min_transmit_interval = optional(number)

0 commit comments

Comments
 (0)