nixos-wiki-infra/terraform/admins/main.tf

9 lines
154 B
Terraform
Raw Permalink Normal View History

2023-05-14 18:18:38 +02:00
resource "hcloud_ssh_key" "hcloud" {
for_each = var.ssh_keys
name = each.key
public_key = each.value
labels = {
"wiki" = "true"
}
}