Channels
welcome
pulumi-cdk
cloudengineering
yaml
blog-posts
localstack
pulumi-ai
package-authoring
general
pulumiup-booth-support
oracle-cloud-infrastructure
learn-pulumi-events
linen
registry
built-with-pulumi
pulumi-cloud
contribex
testingtesting321
hacktoberfest
pulumi-crosscode
content-share
finops
multi-language-hackathon
office-hours
workshops
gitlab
pulumi-kubernetes-operator
jobs
pulumi-deployments
dotnet
aws
golang
announcements
java
pulumiverse
python
install
getting-started
cloudengineering-support
testingtesting123
hackathon-03-19-2020
typescript
google-cloud
contribute
azure
kubernetes
docs
automation-api
status
Powered by
#general
Title
t
tall-rose-87315
10/23/2019, 8:24 PM
Is the RandomPassword result supposed to be treated as a Secret? I am seeing it as plain text in the logs and in the output: export const password = new RandomPassword("password", { length: 20 }).result; Outputs: password: "&3MHv-kbBv&AY-wP=ShK"
w
white-balloon-205
10/23/2019, 8:41 PM
Note that you can use
additionalSecretOutputs
to ensure
result
gets marked a secret. Once
https://github.com/pulumi/pulumi-terraform-bridge/issues/10
is implemented, that will no longer be necessary.
Post