Skip to content

Instantly share code, notes, and snippets.

@clok
Created October 30, 2015 15:06
Show Gist options
  • Save clok/f885d48ffa79bac77669 to your computer and use it in GitHub Desktop.
Save clok/f885d48ffa79bac77669 to your computer and use it in GitHub Desktop.
# 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