The random_password resource allows the creation of random passwords.
random_password
resource "random_password" "password" { length = 32 } output "password" { value = resource.random_password.password.value }
Last updated 1 month ago