Hi guys, Is it possible to run some actions in on...
# typescript
b
Hi guys, Is it possible to run some actions in one AWS Organisation and in the same stack reference an item from a different AWS organisation. My case is I have a load balancer in Org A, and a DNS zone in Org B. I want to create a DNS CNAME entry in Org B pointing to Load balancer endpoint from Org A. Is this possible? If yes, how? Thanks
s
Came across this: https://www.pulumi.com/docs/guides/organizing-projects-stacks/#organizing-projects-and-stacks looks like there are at least two patterns to help us think through these kinds of requirements
l
You need two provider objects, one for each set of credentials. They can be in the same project / stack, or in different projects / stacks, and referenced using StackReference.
🙏 1