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,20 @@
module "network" {
source = "../../modules/network"
vpc_id = var.vpc_id
private_subnets = var.private_subnets
public_subnets = var.public_subnets
cluster_name = local.cluster_name
}
module "eks" {
source = "../../modules/eks"
vpc_id = var.vpc_id
cluster_name = local.cluster_name
subnet_ids = concat(
module.network.private_subnet_ids,
module.network.public_subnet_ids,
)
depends_on = [module.network]
azs = module.network.azs
}