Last active
January 16, 2021 23:14
-
-
Save 0xdabbad00/d05b752c84712781c7ec7c040585bf3a to your computer and use it in GitHub Desktop.
AWS services per region using botocore endpoints
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
cat botocore/data/endpoints.json | jq -cr '.partitions[0].services | keys[] as $k | .[$k] | .endpoints|to_entries[]| .key +"\t"+ $k' | sort | cut -f1 | uniq -c | sort -nr | sed 's/^ *\([0-9][0-9]*\) /\1 /' | grep -v fips | |
126 us-east-1 | |
116 us-west-2 | |
115 eu-west-1 | |
101 ap-southeast-2 | |
100 ap-northeast-1 | |
97 eu-central-1 | |
95 us-east-2 | |
94 ap-southeast-1 | |
82 ap-northeast-2 | |
78 us-west-1 | |
78 ap-south-1 | |
77 eu-west-2 | |
73 ca-central-1 | |
65 sa-east-1 | |
59 eu-west-3 | |
42 eu-north-1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
curling the latest version: https://raw.githubusercontent.com/boto/botocore/master/botocore/data/endpoints.json