Is the RandomPassword result supposed to be treate...
# general
t
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
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.