clan-infra/terraform/admins/main.tf

9 lines
155 B
HCL

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