Noob question for y’all: I noticed when I run `pu...
# general
g
Noob question for y’all: I noticed when I run
pulumi config set foo 5
, the
Pulumi.<stack>.yaml
writes the config key prefixed, e.g
<projectname>:foo: 5
. I can then get that config with
config.require('foo')
is this prefixing each key with
<projectname>
the normal behavior?
d
Yes, this is normal behaviour
g
thanks!