Hello all, just curious, is there any example that...
# python
f
Hello all, just curious, is there any example that shows reading the config (
pulumi up -c var1=val1,var2=val2
) and / or configuration files (
pulumi up --config-file
) in the python code?
l
i think config is yaml file, you can create config value with
pulumi config varname varvalue
afair
🙇‍♂️ 1
👍 1
and after that you can look at the config generated and mimic it
f
@little-river-49422 Sorry to bother you again, how to pass dictionary / list in config?
l
not sure, comma separated values? you can do anything with config values, so you can just parse them
f
Nay, I mean like dictionary or list.
l
yeah, i dont know 😉 sorry
might not be possible
read the help for
pulumi config
?
f
Did. Not really mentioned on this part.