9 lines
147 B
HCL
9 lines
147 B
HCL
resource "random_password" "restic" {
|
|
length = 32
|
|
}
|
|
|
|
output "restic_password" {
|
|
value = random_password.restic.result
|
|
sensitive = true
|
|
}
|