Skip to content

Instantly share code, notes, and snippets.

@radiofrequency
Created January 3, 2018 03:56
Show Gist options
  • Star 28 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save radiofrequency/4db5e731194b0ca3e1f0a573063b3220 to your computer and use it in GitHub Desktop.
Save radiofrequency/4db5e731194b0ca3e1f0a573063b3220 to your computer and use it in GitHub Desktop.
Import lets encrypt cert to aws certificate manager in renew hook
#place in /etc/letsencrypt/renewal-hooks/post
export AWS_ACCESS_KEY_ID=XXX
export AWS_SECRET_ACCESS_KEY=XXX
#certs must be in us-east-1 to use with cloudfront
export AWS_DEFAULT_REGION=us-east-1
#run without --certificate-arn first time then specify arn for updates
aws acm import-certificate --certificate file:///etc/letsencrypt/live/site.com/cert.pem --private-key file:///etc/letsencrypt/live/site.com/privkey.pem --certificate-chain file:///etc/letsencrypt/live/site.com/chain.pem --certificate-arn specifyarnforupdate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment