excellent! as @victorious-church-57397 mentioned, isolation of environments is per account,
what I found with providers is that they create the resources within the same Pulumi stack
that's why I was exploring Automation API, to have a way to deploy resources per account per region in its own Pulumi stack,
for example:
AccountDev, AccountProd, us-east-1, eu-west-1
I want to generate the following stacks:
• MyPulumiProject/AccountDev-us-east-1
• MyPulumiProject/AccountDev-eu-west-1
• MyPulumiProject/AccountProd-us-east-1
• MyPulumiProject/AccountProd-eu-west-1
If I use providers, I would ended with:
• MyPulumiProject/MyStackName <- everything by provider here
that's the outcome I find using "providers", which is not ideal since the blast radius of changes affects everything
would be great to have isolation in the pulumi stack level,
i'm doing something wrong?