Files
eks/modules/network/variables.tf
2025-07-22 18:29:08 -05:00

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)
}