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" } }