Created
August 28, 2014 16:36
-
-
Save tayler/59ae66762f496ff4c0c4 to your computer and use it in GitHub Desktop.
AWS Elastic Beanstalk .ebextension config file in JSON (I could only find examples in YAML)
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": [ | |
{ | |
"option_name":"foo", | |
"value": "fooisfoo" | |
}, | |
{ | |
"option_name": "DEPLOYMENT", | |
"value": "development" | |
}, | |
{ | |
"option_name": "PARAM1", | |
"value": "This is param 1" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment