Hey all! How can I work with AWS resources in diff...
# aws
c
Hey all! How can I work with AWS resources in different regions with Pulumi? Most of my resources is in the same region, but there is one specific resource (SES) that needs to be configured in a different one, due to feature availability..
b
you can pass an explicit provider to your resource which allows you to configure your region: https://www.pulumi.com/docs/reference/pkg/aws/provider/
c
Thanks! Will it inherit the other necessary configuration automatically (access keys etc.), such that specifying only the region will be sufficient for the new provider?
b
no, but you can read the config values and pass them through
c
Got it, thanks again!