Files
kubernetes-the-hard-way/terraform/main.tf
2025-12-22 12:26:40 -05:00

16 lines
346 B
HCL

resource "hcloud_ssh_key" "key" {
name = "kthw-key"
public_key = file(var.public_key_file)
}
resource "hcloud_server" "boxes" {
for_each = var.boxes
name = each.value
image = "debian-12"
ssh_keys = [hcloud_ssh_key.key.id]
server_type = "cx23"
public_net {
ipv4_enabled = true
ipv6_enabled = false
}
}