https://pulumi.com logo
Title
t

thousands-area-40147

07/11/2022, 1:45 PM
Hey folks, I'm trying to use
pulumi config set --path '<http://abc.xyz|abc.xyz>' '---test---'
but it's trying to parse the value as a flag, despite it being in single quotes. How would I go about adding a string starting with dashes as a value using
config set
?
b

billowy-army-68599

07/11/2022, 1:47 PM
echo '---test---' | pulumi config set --path '<http://abc.xyz|abc.xyz>'
t

thousands-area-40147

07/11/2022, 1:49 PM
Ah, that works, thanks! In the resulting .yaml entry, will the single quotes around the string be ignored or are they part of the value now?
Nevermind, leaving them out when setting the value also omits them in the .yaml. Thanks again!
b

billowy-army-68599

07/11/2022, 1:52 PM
👍