@cfn-modules/acm-wildcard-certificate-public
v1.0.0
Published
Public wildcard certificate managed by ACM
Downloads
63
Readme
cfn-modules: AWS Certificate Manager wildcard certificate (public)
Public wildcard certificate managed by ACM.
Let's assume you have created a hosted zone for widdix.net
. This module creates a certificate for the following (sub)domain names:
widdix.net
*.widdix.net
Keep in mind that
*.widdix.net
includes only one subdomain level. E.g.www.widdix.net
is included, butwww.test.widdix.net
is not.
Install
Install Node.js and npm first!
npm i @cfn-modules/acm-wildcard-certificate-public
Usage
---
AWSTemplateFormatVersion: '2010-09-09'
Description: 'cfn-modules example'
Resources:
Certificate:
Type: 'AWS::CloudFormation::Stack'
Properties:
Parameters:
HostedZoneModule: !GetAtt 'HostedZone.Outputs.StackName' # required
TemplateURL: './node_modules/@cfn-modules/acm-wildcard-certificate-public/module.yml'
Examples
none