This message was deleted.
# getting-started
s
This message was deleted.
p
If itโ€™s already available in the config, you can easily read the values from another namespace.
Config
constructor takes an additional parameter - you can specify the namespace there
b
Oh! Thanks for the pointer! I was looking for exactly that ๐Ÿ™‚
p
Copy code
gcp_config = pulumi.Config("gcp")
gcp_project = gcp_config.require("project")
something like that ๐Ÿ™‚
b
yup works like a charm, thanks again