thousands-area-40147
07/11/2022, 1:45 PMpulumi 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
?billowy-army-68599
echo '---test---' | pulumi config set --path '<http://abc.xyz|abc.xyz>'
thousands-area-40147
07/11/2022, 1:49 PMbillowy-army-68599