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

9 lines
147 B
Terraform
Raw Permalink Normal View History

2024-12-14 01:55:51 +08:00
resource "random_password" "restic" {
length = 32
}
output "restic_password" {
value = random_password.restic.result
sensitive = true
}