nixos-config/infra/modules/host/restic.tf

9 lines
147 B
HCL

resource "random_password" "restic" {
length = 32
}
output "restic_password" {
value = random_password.restic.result
sensitive = true
}