mirror of
https://github.com/Mic92/nixos-wiki-infra.git
synced 2024-11-22 16:24:02 +01:00
9 lines
154 B
HCL
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"
|
|
}
|
|
}
|