18 lines
364 B
Terraform
18 lines
364 B
Terraform
module "cluster" {
|
|
source = "../modules/cluster"
|
|
|
|
prefix = "clst-prod"
|
|
zone = "no-svg1"
|
|
node_plan = "CLOUDNATIVE-4xCPU-8GB"
|
|
node_count = 4
|
|
storage_size = 30
|
|
network_cidr = "10.100.0.0/24"
|
|
|
|
control_plane_ip_filter = ["0.0.0.0/0"] # TODO: restrict to known CIDRs
|
|
|
|
tags = {
|
|
Environment = "prod"
|
|
ManagedBy = "tofu"
|
|
}
|
|
}
|