All checks were successful
AI Code Review / ai-review (pull_request) Successful in 59s
18 lines
345 B
HCL
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"
|
|
}
|
|
}
|