Files
gcp-simple-lz/modules/network-peering/variables.tf
T

24 lines
491 B
Terraform

variable "left" {
description = "The left side of the peering connection."
type = object({
project_id = string
network_id = string
network_name = string
})
}
variable "right" {
description = "The right side of the peering connection."
type = object({
project_id = string
network_id = string
network_name = string
})
}
variable "hub_spoke" {
type = bool
default = false
description = "Set to true if the peering is hub-spoke."
}