Files
launchpad/.tofu/platforms/eks/prod/main.tf
Danijel Simeunovic 96dde22884
All checks were successful
AI Code Review / ai-review (pull_request) Successful in 59s
strip cluster bootstraps
2026-04-27 21:43:42 +02:00

22 lines
437 B
HCL

module "cluster" {
source = "../modules/cluster"
region = var.region
prefix = "clst"
# VPC
availability_zones = ["${var.region}a", "${var.region}b", "${var.region}c"]
# EKS — general-purpose nodes for production
node_instance_type = "m5.xlarge"
node_count = 3
node_min_count = 3
node_max_count = 6
kubernetes_version = "1.30"
tags = {
Environment = "prod"
ManagedBy = "tofu"
}
}