20 lines
333 B
HCL
20 lines
333 B
HCL
variable "vpc_name" {
|
|
description = "VPC name"
|
|
type = string
|
|
}
|
|
|
|
variable "vpc_cidr" {
|
|
description = "VPC CIDR block"
|
|
type = string
|
|
}
|
|
|
|
variable "vswitch_cidrs" {
|
|
description = "VSwitch CIDR blocks"
|
|
type = list(string)
|
|
}
|
|
|
|
variable "zone_ids" {
|
|
description = "Zone IDs"
|
|
type = list(string)
|
|
}
|