Skip to content

Instantly share code, notes, and snippets.

@charity
Created February 17, 2016 21:32
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save charity/d216810052c8cac23605 to your computer and use it in GitHub Desktop.
Save charity/d216810052c8cac23605 to your computer and use it in GitHub Desktop.
How to get all aws account limits.
$ for svc in $(aws list 3>&1 1>&2 2>&3 3>&- | sed -e '1,7d' |sed -e 's/\|//g') ; do aws $svc describe-account-attributes 2>/dev/null || echo "not supported for $svc" ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment