-
-
Save mbuotidem/dea80517bd43fdd795cf76d5784524e8 to your computer and use it in GitHub Desktop.
Get all AWS IAM actions
This file contains hidden or 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
| import requests | |
| import json | |
| def fetch_json(url): | |
| response = requests.get(url) | |
| return response.json() | |
| def main(): | |
| # Fetch the main JSON file | |
| main_url = "https://servicereference.us-east-1.amazonaws.com/" | |
| services = fetch_json(main_url) | |
| # Create a dictionary to store all service actions | |
| actions = {} | |
| # Process each service | |
| for service in services: | |
| service_url = service["url"] | |
| service_name = service["service"] | |
| print(f"Fetching data for {service_name}...") | |
| try: | |
| service_data = fetch_json(service_url) | |
| # Extract action names | |
| service_actions = [ | |
| action["Name"] for action in service_data.get("Actions", []) | |
| ] | |
| # Add to actions dictionary | |
| actions[service_name] = service_actions | |
| print(f"Added {len(service_actions)} actions for {service_name}") | |
| except Exception as e: | |
| print(f"Error processing {service_name}: {str(e)}") | |
| # Save the combined actions to a file | |
| with open("actions.json", "w") as f: | |
| json.dump(actions, f, indent=2) | |
| print("All service actions have been combined into actions.json") | |
| if __name__ == "__main__": | |
| main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment