When running `pulumi up`, is there a way to pass CLI args to my Pulumi code? e.g. `pulumi up foo=bar...
n
When running
pulumi up
, is there a way to pass CLI args to my Pulumi code? e.g.
pulumi up foo=bar
?
🙏 1
c
Have you tried the
--config
option?
🙏 1
n
Ok you directed my to the right direction, I then need to used
Config
in the Pulumi code, rather than regular CLI args. Thanks!