Add Hetzner placement group and link servers to it

This commit is contained in:
Waël Ammar
2022-01-29 21:15:23 +01:00
committed by Olivier Wenger
parent e77bc4d161
commit 9b7375e424
4 changed files with 31 additions and 18 deletions

View File

@@ -1,12 +1,13 @@
resource "hcloud_server" "first_control_plane" {
name = "k3s-control-plane-0"
image = data.hcloud_image.linux.name
rescue = "linux64"
server_type = var.control_plane_server_type
location = var.location
ssh_keys = [hcloud_ssh_key.default.id]
firewall_ids = [hcloud_firewall.k3s.id]
image = data.hcloud_image.linux.name
rescue = "linux64"
server_type = var.control_plane_server_type
location = var.location
ssh_keys = [hcloud_ssh_key.default.id]
firewall_ids = [hcloud_firewall.k3s.id]
placement_group_id = hcloud_placement_group.k3s_placement_group.id
labels = {
"provisioner" = "terraform",