17 lines
329 B
HCL
17 lines
329 B
HCL
module "cluster" {
|
|
source = "../modules/cluster"
|
|
|
|
prefix = "devhub"
|
|
zone = "de-fra1"
|
|
node_plan = "4xCPU-8GB"
|
|
node_count = 3
|
|
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"
|
|
}
|
|
}
|