nixos-config/infra/passwords.tf
2024-12-16 21:45:28 +08:00

9 lines
156 B
HCL

resource "random_bytes" "knot_tsig_ddns" {
length = 32
}
output "knot_tsig_ddns" {
value = random_bytes.knot_tsig_ddns.base64
sensitive = true
}