Skip to content

Instantly share code, notes, and snippets.

@jetztgradnet
Created February 3, 2011 02:58
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 jetztgradnet/808962 to your computer and use it in GitHub Desktop.
Save jetztgradnet/808962 to your computer and use it in GitHub Desktop.
Script to list available Elastic Beanstalk options
elastic-beanstalk-describe-configuration-settings -j | # get available options
jazor | # pretty print json
grep Name | # grep for Name and Namespace
# join Namespace and Name
awk '-F"' 'BEGIN { name=""; namespace=""; } /"Name"/ { name=$4 } /"Namespace"/ { namespace=$4; printf "%-50s\t%s\n", namespace, name }' |
sort # sort results by namespace
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment