19 lines
331 B
HCL
19 lines
331 B
HCL
variable "vpc_id" {
|
|
description = "VPC ID"
|
|
type = string
|
|
}
|
|
|
|
variable "cluster_name" {
|
|
description = "The name of the cluster"
|
|
}
|
|
|
|
variable "private_subnets" {
|
|
description = "Private subnets}"
|
|
type = list(string)
|
|
}
|
|
|
|
variable "public_subnets" {
|
|
description = "Public subnets}"
|
|
type = list(string)
|
|
}
|