https://pulumi.com logo
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.