Files
launchpad/.tofu/platforms/gke/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

18 lines
345 B
HCL

module "cluster" {
source = "../modules/cluster"
project_id = var.project_id
region = var.region
prefix = "clst"
# GKE — general-purpose nodes for production
node_machine_type = "e2-standard-4"
node_count = 3
deletion_protection = true
labels = {
environment = "prod"
managed-by = "tofu"
}
}