clan-infra/terraform/admins/main.tf

9 lines
154 B
Terraform
Raw Normal View History

2023-07-04 14:43:31 +00:00
resource "hcloud_ssh_key" "hcloud" {
for_each = var.ssh_keys
name = each.key
public_key = each.value
labels = {
"wiki" = "true"
}
}