For env variable (such as pipeline configs) we can...
# general
m
For env variable (such as pipeline configs) we can do
pulumi up -c "input1=123" -c "input2=345"
, but why are these prefixed with the
name
from Pulumi.yaml?
a
because all pulumi config keys have a namespace, and specifying a config key without a namespace is just shorthand for referencing the current project’s namespace
☝️ 1
👍 1
m
Gotcha, thanks!