- variable "tags" {
- description = "Tags to add to the resource (in addition to global standard tags)"
- type = map(any)
- default = {}
- }
- variable "vpc_info" {
- description = "A map of information about the VPC to create. Must contain `name` and `cidr`."
- type = map(any)
- }
- variable "vpc_id" { type = string }
- variable "azs" { type = list(string) }
- variable "public_subnets" { type = list(string) }
- variable "private_subnets" { type = list(string) }
|