Hey y'all. I'm just wondering if it is possible to...
# aws
b
Hey y'all. I'm just wondering if it is possible to create resources in other accounts than the one all resources are created for the current stack? In my case, I have an account which manages general infrastructure (in this case, DNS) which is separate to the main dev account. When I spin up a new service, I want it to register a new record set in route 53. Is this possible?
c
You can could use a custom provider: https://www.pulumi.com/docs/reference/pkg/aws/provider/
pass in
assume_role
or a separate set of credentials
b
Super, thanks @crooked-pillow-11944