This message was deleted.
# general
s
This message was deleted.
l
Your options are multiple projects, multiple stacks, or a single stack. You should probably choose which option based on the deployment cycles. • Will you be deploying the various resources at the same time, and there's only one of each? (Single stack). • Will you be deploying the various resources at the same time, but you'll want more than one copy of each resource, perhaps one for APAC and one for US, or one for test and one for prod? (Single project, multiple stacks). • Do you want to deploy them individually, completely independently of all other resources? (Multiple projects)
Since the configs are similar, you probably want a single
__main__.py
. The only differences would be in your Pulumi.yaml and/or Pulumi.<stack>.yaml files.
m
yeah eventually I went for single project multiple stack startegy, with a top lvl
__main____.py
. thx for the advice!
👍 1