https://pulumi.com logo
#general
Title
# general
g

gifted-balloon-26385

11/06/2023, 8:11 PM
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

dry-keyboard-94795

11/06/2023, 8:29 PM
Yes, this is normal behaviour
g

gifted-balloon-26385

11/06/2023, 8:35 PM
thanks!