You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2022. It is now read-only.
// Licensed under the Universal Permissive License v 1.0
variable ip_exchange_name {
description = "Name for the IP Network Exchange resource."
}
variable subnet_cidrs {
type = "list"
description = "List of CIDRs for the IP Network subnets. An separate IP Network resource will be created for each CIDR. Network address ranges must not overlap."
}
variable subnet_names {
type = "list"
description = "List of names for the IP Networks subnets corresponding to the list of the `subnet_cidrs`."
}
variable public_napt_subnets {
type = "list"
description = "Names of the IP Network subnets to be enabled for public internet access using NAPT. NAPT is disabled by default."
default = []
}
variable tags {
type = "list"
description = "(Optional) List of Tags to apply to all resources created by this module."