This message was deleted.
s
This message was deleted.
🤔 2
k
You can split out the "common" parts into another project / stack and then reference that from the dependent stacks
e.g `
Copy code
const common = new pulumi.StackReference(`acmecorp/common/shared`);
pulumi doesnt have a concept of a hierarchical configuration model with overrides at arbitrary levels (correct me, please, if I'm wrong)
You can copy config from one stack to the other (new) https://github.com/pulumi/pulumi/issues/1583
n
@kind-mechanic-53546 that's a smart one. Thanks much
I would like to suggest dev team to consider using the
Pulumi.yaml
as global shared config between stacks. Thoughts?
âž• 1