sevenwestmedia-labs / pulumi

Collection of Pulumi modules we have built
9 stars 5 forks source link

Add acm-dns-validated module #3

Closed bennettp123 closed 4 years ago

bennettp123 commented 4 years ago

This module:

It includes support for multiple SANs, and returns the certificate ARN for use in AWS resources.

Details are in the README.md, but a here is a brief example of how it's used:

import * as acmCert from 'pulumi-acm-dns-validated-cert'

const cert = new acmCert.ACMCert('example-cert', {
    subject: 'www.example.com',
    zoneName: 'example.com',
})