Created
February 17, 2016 21:32
-
-
Save charity/d216810052c8cac23605 to your computer and use it in GitHub Desktop.
How to get all aws account limits.
This file contains 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
$ 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