mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-10-29 09:32:39 +00:00
14 lines
407 B
HCL
14 lines
407 B
HCL
|
|
resource "local_sensitive_file" "worker-as" {
|
|
content = templatefile("${path.module}/templates/worker.yaml.tpl",
|
|
merge(local.kubernetes, try(var.instances["all"], {}), {
|
|
lbv4 = local.ipv4_vip
|
|
nodeSubnets = var.vpc_main_cidr
|
|
labels = "${local.worker_labels},hcloud/node-group=worker-as"
|
|
})
|
|
)
|
|
|
|
filename = "_cfgs/worker-as.yaml"
|
|
file_permission = "0600"
|
|
}
|