Hey all. What's the best way to add a multiline se...
# general
p
Hey all. What's the best way to add a multiline secret to the stack config? The
value:
prompt from the CLI only takes the first line when I paste in the multiline value, and then executes the remaining lines in the shell 😄 (on Windows)
e
pipe the value in as stdin, something like
Get-Content secret.txt | pulumi config set theSecret --secret
p
Ah, perfect. Thanks 🙂