Added IPSEC_INTERCONNECT addresses to net-address module

This commit is contained in:
Miren Esnaola
2023-08-02 12:07:20 +02:00
parent c8383720e2
commit 3b7e62990c
5 changed files with 102 additions and 9 deletions

View File

@@ -46,6 +46,18 @@ variable "internal_addresses" {
default = {}
}
variable "ipsec_interconnect_addresses" {
description = "Map of internal addresses used for HPA VPN over Cloud Interconnect."
type = map(object({
region = string
address = string
network = string
description = optional(string, "Terraform managed.")
prefix_length = number
}))
default = {}
}
# variable "internal_address_labels" {
# description = "Optional labels for internal addresses, keyed by address name."
# type = map(map(string))
@@ -76,4 +88,4 @@ variable "psc_addresses" {
description = optional(string, "Terraform managed.")
}))
default = {}
}
}