mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-10-29 17:42:47 +00:00
14 lines
382 B
HCL
14 lines
382 B
HCL
|
|
resource "local_sensitive_file" "worker-as" {
|
|
content = templatefile("${path.module}/templates/worker-as.yaml.tpl",
|
|
merge(var.kubernetes, {
|
|
lbv4 = local.ipv4_vip
|
|
nodeSubnets = var.vpc_main_cidr
|
|
labels = "project.io/node-pool=worker,hcloud/node-group=worker-as"
|
|
})
|
|
)
|
|
|
|
filename = "_cfgs/worker-as.yaml"
|
|
file_permission = "0600"
|
|
}
|