How do I look up an existing resource in a differe...
# aws
s
How do I look up an existing resource in a different region than the one currently set in the pulumi config?
specifically, I’m creating a cloudfront distro and right now pulumi is only pulling in the certificate from my current region
us-west-2
and I need to get a reference to the cert in
us-east-1
s
you can configure an aws provider with the other region: https://www.pulumi.com/docs/reference/pkg/aws/provider/#region_nodejs
🙌 1