When running `pulumi up`, is there a way to pass C...
# getting-started
n
When running
pulumi up
, is there a way to pass CLI args to my Pulumi code? e.g.
pulumi up foo=bar
?
c
Have you tried the
--config
option?
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!