apologies if this has been asked before but - does...
# general
f
apologies if this has been asked before but - does pulumi support a concept of a “base” stack configuration file, scoped in a particular project? eg: •
Pulumi.<base>.yaml
- has the defaults •
Pulumi.<a>.yaml
- has the
a
stack’s configs, as overrides from what is specified in
base
Pulumi.<b>.yaml
- has the
b
stack’s configs … etc.
👀 1
l
No. You can vote for it here: https://github.com/pulumi/pulumi/issues/2307
f
done - thank you!
l
Two common workarounds: 1. Dave a project with a single stack, for the common config. Access the common config via stack references. 2. Do it using ordinary config support in your preferred language.
While Pulumi config is handy, it's not special in any way: you may prefer to use a different way of getting app configuration values from config files. It's fine to do that.
🙏 1