nixos-wiki-infra/terraform/admins/main.tf
2023-05-14 19:02:34 +02:00

9 lines
154 B
HCL

resource "hcloud_ssh_key" "hcloud" {
for_each = var.ssh_keys
name = each.key
public_key = each.value
labels = {
"wiki" = "true"
}
}