You can use AWS CLI to add multiple FQDN in a single command while creating a new ACM certificate.
Following is the command you can use to achieve this,
aws acm request-certificate --domain-name example.com --validation-method DNS --subject-alternative-names b.example.com c.example.com d.example.com
aws acm request-certificate --domain-name example.com --validation-method DNS --subject-alternative-names b.example.com c.example.com d.example.com
Comments
Post a Comment