how do you escape dot in config set command? like...
# general
g
how do you escape dot in config set command? like tls.key to not be:
Copy code
tls:
  key:
Copy code
but tls.key:
s
May I ask what you are trying to achieve?
l
Seems like he wants a
.
in the name of his config variable .. but that's how it behaves by default. If you do
pulumi config set tls.key hello
then it will set
Copy code
tls.key: hello
If you want to set
Copy code
tls:
  key:
use the
--path
flag
g
excellent thank you @limited-farmer-68874