This message was deleted.
# general
s
This message was deleted.
g
for the getCertificate function it would look like
Copy code
const eastRegion = new aws.Provider("east", {
    region: "us-east-1", // Per AWS, ACM certificate must be in the us-east-1 region.
});
const cert = aws.acm.getCertificate({ domain: "<http://example.com|example.com>" }, { provider: eastRegion });
s
oh sweet, thanks!