mirror of
https://github.com/outbackdingo/terraform-hcloud-talos.git
synced 2026-01-27 10:20:30 +00:00
The labels `cluster` and `role` are added to hcloud objects. Labels can be used as selector in subsequent Terraform resources.
16 lines
327 B
HCL
16 lines
327 B
HCL
resource "hcloud_placement_group" "control_plane" {
|
|
name = "${local.cluster_prefix}control-plane"
|
|
type = "spread"
|
|
labels = {
|
|
"cluster" = var.cluster_name
|
|
}
|
|
}
|
|
|
|
resource "hcloud_placement_group" "worker" {
|
|
name = "${local.cluster_prefix}worker"
|
|
type = "spread"
|
|
labels = {
|
|
"cluster" = var.cluster_name
|
|
}
|
|
}
|