项目作者: pfulop

项目描述 :
This is a plugin for automatic creation of certificate for cloudfront distribution
高级语言: TypeScript
项目地址: git://github.com/pfulop/serverless-cloudfront-distribution-certificate.git
创建时间: 2019-02-19T19:09:21Z
项目社区:https://github.com/pfulop/serverless-cloudfront-distribution-certificate

开源协议:MIT License

下载


serverless-cloudfront-distribution-certificate

This serverless plugin manages to create certificate for specified CloudFront distribution. It also handles validation trough dns and ROUTE 53.

serverless
npm version
MIT licensed

Usage

Installation

  1. npm install serverless-cloudfront-distribution-certificate --save-dev

Configuration

  1. plugins:
  2. - serverless-cloudfront-distribution-certificate
  3. custom:
  4. cfdDomain:
  5. domainNames:
  6. - "serverless.example.com"
  7. - "server.example.com"
  8. - "doggo.example.com"
  9. cloudFront: CloudFrontDistribution
  10. retries: 15
  11. minimumProtocolVersion: TLSv1.2_2018
  12. enabled: true

Where domainNames are domains for which ssl certificate should be generated, cloudFront is the logical name of your CloudFront distribution, and minimumProtocolVersion is the ViewerCertificate’s MinimumProtocolVersion setting (optional).
You can specify enabled (by default true) to add custom rules for when to use this plugin.

Note

To use an ACM Certificate with CloudFront, you must request the certificate in the US East (N. Virginia) region. ACM Certificates in this region that are associated with a CloudFront distribution are distributed to all the geographic locations configured for that distribution.

This plugin will wait up to 15 minutes for certificate to be issued. If the state won’t be issued within 15 minutes, it will fail.
15
Additionaly you can specify number of retries by providing retries option. This number is used when checking if certificate is issued (1 retry == 1 minute), or when waiting for route record to be created (1 retry == 2 seconds).