Is there a way to decrypt secrets masked with “_ad...
# typescript
b
Is there a way to decrypt secrets masked with “_additionalSecretOutputs” ?_
l
They're automatically decrypted once you're inside an
apply()
.
👍 1
b
I’d like to decrypt it from cli, is it possible?
c
Yes, if the property is exported as an output of the stack, then you may use the
--show-secrets
flag to decrypt it. For example,
pulumi stack output mySecretProp --show-secrets
.
❤️ 1
b
Thanks! that’s what I was looking for :)