initial commit

This commit is contained in:
2025-07-22 18:29:08 -05:00
commit 18647902d4
18 changed files with 11020 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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)
}