https://pulumi.com logo
b

busy-magazine-48939

08/25/2020, 4:03 AM
Is there a way to decrypt secrets masked with “_additionalSecretOutputs” ?_
l

little-cartoon-10569

08/25/2020, 4:08 AM
They're automatically decrypted once you're inside an
apply()
.
👍 1
b

busy-magazine-48939

08/25/2020, 4:59 AM
I’d like to decrypt it from cli, is it possible?
c

clever-sunset-76585

08/25/2020, 5:17 AM
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

busy-magazine-48939

08/25/2020, 6:43 AM
Thanks! that’s what I was looking for :)