Password

The random_password resource allows the creation of random passwords.

resource "random_password" "password" {
    length = 32
}

output "password" {
    value = resource.random_password.password.value
}

Last updated