https://pulumi.com logo
Title
b

brave-winter-60074

01/12/2021, 12:48 PM
We are building a microservice setup with pulumi azure nextgen and are transioting all our services to the new pulumi structure. Is there a way to create stacks for a group of pulumi projects so that we able to spin up a new environment and all its infrastructure without having to go to each service and do it by hand. Hope that my question makes sense…
w

witty-candle-66007

01/12/2021, 2:19 PM
If I understand correctly, you have multiple projects/stacks where a given stack stands up, say, networking resources, and another stack stands up, say, the AKS cluster, etc. And you want to orchestrate those multiple stacks in code instead of having to do
pulumi up
for stack A and then
pulumi up
for stack B. If that’s correct, then the automation API will allow you to do that: https://www.pulumi.com/blog/automation-api/
b

brave-winter-60074

01/13/2021, 7:45 AM
yes exactly, thanx!