Created
October 30, 2015 15:06
-
-
Save clok/f885d48ffa79bac77669 to your computer and use it in GitHub Desktop.
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
# Show all EB Deployed versions | |
aws --profile eb-cli elasticbeanstalk describe-environments | jq -r '.Environments[] | .EnvironmentName + ": " + .Status + "/" + .Health + "\t (" + .VersionLabel + ")"' | sort | |
# Show EB envs that are NOT Ready | |
aws --profile eb-cli elasticbeanstalk describe-environments | jq -r '.Environments[] | .EnvironmentName + ": " + .Status + "/" + .Health + "\t (" + .VersionLabel + ")"' | sort | grep -v Ready |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment