Is there a way to 'inherit' configs from a Stack? ...
# general
d
Is there a way to 'inherit' configs from a Stack? We have 'per engineers' stacks and ideally I'd put the config in the 'main' Pulumi.yaml and not copy it over to every engineer... I found only today about the pulumi cp which is nice but Ideally I'd avoid to copy over and over those configs..
r
Take a look here https://www.pulumi.com/docs/intro/concepts/config/.
Copy code
You can call info from stacks using `new pulumi.Config();`.
w
You could have a single stack that has Output for all your config, that's what we're doing, but we already have a need for a core stack so it was logical for us.