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

busy-house-95123

09/29/2021, 10:52 PM
There’s currently no established way to setup general config key/value pairs which would apply to all stacks, right? kind of like a default config: key
l

little-cartoon-10569

09/29/2021, 10:55 PM
Yes, there is no currently established way to do this using core features. Advice I've seen several times is to have a zero-resource stack with the shared config as outputs. Then use stack references to get that config.
However, since you're talking about config that's above all the stacks, then your preferred language's normal config options are probably equally suitable and have a lower overhead.
And they provide the config in not-outputs.
That is, I recommend not using Pulumi to solve this problem: use your language of choice.
🙌 1
b

busy-house-95123

09/29/2021, 11:07 PM
got it, thanks.
2 Views