Skip to content

Instantly share code, notes, and snippets.

@allanlei
Last active March 14, 2016 03:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save allanlei/dd6aa1a1ee768177c12c to your computer and use it in GitHub Desktop.
Save allanlei/dd6aa1a1ee768177c12c to your computer and use it in GitHub Desktop.
Configures AWS Elastic Beanstalk with ACM SSL. Add to .ebextensions/
option_settings:
- namespace: aws:elb:listener:443
option_name: ListenerProtocol
value: HTTPS
- namespace: aws:elb:listener:443
option_name: SSLCertificateId
value: YOUR-ARN-HERE
- namespace: aws:elb:listener:443
option_name: InstancePort
value: 80
- namespace: aws:elb:listener:443
option_name: InstanceProtocol
value: HTTP
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment