When my object has a secret property, during runti...
# general
s
When my object has a secret property, during runtime is it going to be
automatically unsecret
or do I need to use
pulumi.Output.unsecret
?
l
Don't use unsecret, that changes an Output to no longer be secret. Just get the value the normal way, Pulumi sorts it for you. https://www.pulumi.com/docs/intro/concepts/secrets/#a-warning-using-secrets-in-code
👍 1