1回答
- 新しい順
- 投票が多い順
- コメントが多い順
1
I found the answer - you set SubjectAlternativeNames to add the extra names to the cert.
Resources:
SiteCert:
Type: AWS::CertificateManager::Certificate
Properties:
DomainName: !Ref RootDomainName
DomainValidationOptions:
- DomainName: !Ref RootDomainName
HostedZoneId: !Ref HostedZoneId
SubjectAlternativeNames:
- !Sub
- www.${Domain}
- Domain: !Ref RootDomainName
ValidationMethod: 'DNS'
回答済み 9ヶ月前