Created
August 1, 2015 00:24
-
-
Save kremalicious/0508411d8e6abb414452 to your computer and use it in GitHub Desktop.
Upload custom SSL certificate to AWS
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
# http://docs.aws.amazon.com/IAM/latest/UserGuide/ManagingServerCerts.html | |
aws iam upload-server-certificate \ | |
--server-certificate-name certificate_object_name \ | |
--certificate-body file://public_key_certificate_file.pem \ | |
--private-key file://privatekey.key \ | |
--certificate-chain file://certificate_chain_file.pem \ | |
--path /cloudfront/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment