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

@@ -2,12 +2,13 @@ resource "hcloud_server" "agents" {
count = var.agents_num
name = "k3s-agent-${count.index}"
image = data.hcloud_image.linux.name
rescue = "linux64"
server_type = var.agent_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.agent_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 = {