nixos-config/infra/passwords.tf

9 lines
156 B
Terraform
Raw Normal View History

2024-12-16 21:45:28 +08:00
resource "random_bytes" "knot_tsig_ddns" {
length = 32
}
output "knot_tsig_ddns" {
value = random_bytes.knot_tsig_ddns.base64
sensitive = true
}