Created
March 14, 2016 03:16
-
-
Save allanlei/b1aef2c48043e1a43194 to your computer and use it in GitHub Desktop.
Configures AWS Elastic Beanstalk with ACM SSL.
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
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