https://pulumi.com logo
s

square-ability-48831

04/18/2019, 7:31 PM
(using
aws.acm.getCertificate
)
g

gentle-diamond-70147

04/18/2019, 7:42 PM
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

square-ability-48831

04/18/2019, 7:54 PM
oh sweet, thanks!
2 Views