Last active
March 2, 2021 12:54
-
-
Save gergo-dryrun/d14dd61c855a428af5d6bd57de16c355 to your computer and use it in GitHub Desktop.
print out tuple of (AWS Service IAM namespace, AWS Service full name)
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
git clone https://github.com/boto/botocore.git | |
find botocore/botocore/data -name service-*.json | xargs cat | jq -r '(if (.metadata.signingName | length) > 0 then .metadata.signingName else .metadata.endpointPrefix end) + " " + .metadata.serviceFullName' | sort | uniq |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Inspired by https://github.com/duo-labs/cloudtracker#aws_actionstxt