January 2019
Intermediate to advanced
490 pages
15h 37m
English
The certificate request process requires user interaction to verify the domain and hence it cannot be fully automated with CloudFormation scripts. However, I will still provide two templates to request for a certificate and verify the DNS. In the real world, you may just verify from the AWS Management Console or AWS CLI:
---AWSTemplateFormatVersion: '2010-09-09'Description: 'Certificate Manager'Parameters: RootDomainName: Description: Domain name for generating certificate Type: StringResources: RootDomainCert: Type: AWS::CertificateManager::Certificate Properties: DomainName: !Ref RootDomainName ValidationMethod: DNSOutputs: ...
Read now
Unlock full access