Skip to content

Instantly share code, notes, and snippets.

@kremalicious
Created August 1, 2015 00:24
Show Gist options
  • Save kremalicious/0508411d8e6abb414452 to your computer and use it in GitHub Desktop.
Save kremalicious/0508411d8e6abb414452 to your computer and use it in GitHub Desktop.
Upload custom SSL certificate to AWS
# 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