https://pulumi.com logo
#general
Title
# general
q

quick-fall-21011

01/20/2022, 1:57 PM
quick question for the c# folks. I'm marking my class property with an
[Output]
attribute but noticed in some cases it saves it as a secret but also as plain text.
Is there any way to control this? I'm looking to save it as plain text
e

echoing-dinner-19531

01/20/2022, 3:38 PM
Outputs track their "secretness" so if any secret Output value is used to make a new output value it too will be secret. If you pass the output to
Output.Unsecret
it will remove that tracking bit.
q

quick-fall-21011

01/21/2022, 1:06 AM
Perfect, thanks!
3 Views