Last active
December 10, 2017 17:15
-
-
Save li0nel/599dc0949baabf1b95c3a6de15d19095 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# a certificate in your default region for your web application | |
aws acm request-certificate | |
--domain-name laravelaws.com | |
--idempotency-token=random_string_here | |
--subject-alternative-names *.laravelaws.com | |
# a certificate from us-east-1 specifically for our CloudFront custom domain | |
aws --region us-east-1 acm request-certificate | |
--domain-name laravelaws.com | |
--idempotency-token=random_string_here | |
--subject-alternative-names *.laravelaws.com |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment