Files
launchpad/.tofu/platforms/gke/prod/main.tf

18 lines
347 B
HCL

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