Hey folks, I'm trying to use `pulumi config set --...
# getting-started
t
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
echo '---test---' | pulumi config set --path '<http://abc.xyz|abc.xyz>'
t
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
👍