Created
February 3, 2011 02:58
-
-
Save jetztgradnet/808962 to your computer and use it in GitHub Desktop.
Script to list available Elastic Beanstalk options
This file contains hidden or 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
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