Make net-vpc variables nullable

This commit is contained in:
Julio Castillo
2023-09-06 09:57:34 +02:00
parent 012801189a
commit a6640e5959
2 changed files with 9 additions and 6 deletions

View File

@@ -223,7 +223,8 @@ variable "subnets" {
}))
secondary_ip_ranges = optional(map(string))
}))
default = []
default = []
nullable = false
}
variable "subnets_proxy_only" {
@@ -235,7 +236,8 @@ variable "subnets_proxy_only" {
description = optional(string)
active = bool
}))
default = []
default = []
nullable = false
}
variable "subnets_psc" {
@@ -246,7 +248,8 @@ variable "subnets_psc" {
region = string
description = optional(string)
}))
default = []
default = []
nullable = false
}
variable "vpc_create" {