How can I run a bunch of stacks with the same name...
# general
r
How can I run a bunch of stacks with the same name? So I have a
log_setup
which setup's logging for AWS. They are all in there own named stack with the stack name of
log_setup
, if that makes sense! I want to be able to run them all at once. If possible.
w
The typical mode here would be to have a single “project” named
log_setup
and three “stacks” named
dev
,
staging
,
production
(Or East/west/central). If you are using the local backend - you may hit https://github.com/pulumi/pulumi/issues/2522, and would need to include both project and stack names in the stack name you choose (e.g.
log_setup_dev
).
r
So you have stacks within a project? I have about 7 different main files, so to have in one file would be huge.