Is there a more natural way to set the List config...
# general
g
Is there a more natural way to set the List config value other than this?
pulumi config set --path names[0]
p
you can edit related YAML file manually (this is what I usually do)
I use
pulumi config …
commands only for managing secrets.
g
how do you synchronise the yaml file to remote after editing it manually?
pulumi up
?
p
yep, that should do the trick 🙂
g
okay thank you, I'll give it a try
r
You can also just set the whole list as a json string.
pulumi config set names '["foo", "bar", "baz"]'
👍 1