Hey folks, I created a RandomPassword for an RDS i...
# python
b
Hey folks, I created a RandomPassword for an RDS instance via https://www.pulumi.com/registry/packages/random/api-docs/randompassword/#example-usage and did
pulumi.export("pass", password.result)
. This resulted in the output
[secret]
. How can I get the value of the randomly generated password? Is this the correct usage of
RandomPassword
or should I be creating the password manually?
b
Add —show-secrets on the command line
🙏 1
b
That worked! For completeness for future readers, I needed to run
Copy code
pulumi stack output "pass" --show-secrets
Thanks for the help