AWS Super CLI - Multi-account AWS resource discovery with service-level cost intelligence
Project description
AWS Super CLI
What is AWS Super CLI?
AWS Super CLI is a command-line tool for AWS security auditing, resource discovery, and advanced multi-account management. It solves the key problems engineers face:
- AWS security misconfigurations: Comprehensive security auditing across S3, IAM, and network infrastructure
- Multi-account complexity: Smart account categorization, health monitoring, and unified management
- ARN complexity: Human-readable ARN display with smart truncation and explanation capabilities
- Service-level cost intelligence: Get detailed cost analysis with credit allocation per service
Unlike other tools that focus on single concerns, AWS Super CLI provides enterprise-grade security auditing with advanced multi-account management and cost analysis in one unified interface.
Unique features:
- Account Management - Smart categorization, health monitoring, and nickname management across AWS accounts
- ARN Utilities - Human-readable ARN display with smart truncation and explanation capabilities
- Network security auditing - Detect SSH/RDP open to world, overly permissive security groups
- Service-level credit usage analysis - See exactly which AWS services consume promotional credits
- Multi-account security posture - Unified security scoring across AWS organizations
Installation
pip install aws-super-cli
Quick Start
# Smart account management
aws-super-cli accounts # List accounts with categorization & health
# Run comprehensive security audit
aws-super-cli audit --summary
# List EC2 instances across all accounts
aws-super-cli ls ec2 --all-accounts
# Get cost summary with credit analysis
aws-super-cli cost summary
# Explain ARNs in human-readable format
aws-super-cli explain arn:aws:iam::123456789012:user/john-doe
Advanced Multi-Account Management
AWS Super CLI provides advanced multi-account management with automatic categorization and health monitoring:
Account Management Commands
aws-super-cli accounts # Smart account listing with health checks
aws-super-cli accounts --category production # Filter by environment type
aws-super-cli accounts-dashboard # Comprehensive account overview
aws-super-cli accounts-health # Detailed health reporting
aws-super-cli accounts-nickname myprofile "Production Environment" # Set nicknames
Account Management Features
Smart Categorization:
- Automatic environment detection (production, staging, development, security, etc.)
- Pattern-based recognition from account names and descriptions
- Manual category override capabilities
Health Monitoring:
- Real-time health checks across AWS services (EC2, IAM, S3)
- Permission validation and access testing
- Health status indicators: healthy, warning, error, unknown
Enhanced Organization:
- Account nicknames for better identification
- Category-based filtering and grouping
- Rich table display with comprehensive account information
Example Account Output
AWS Account Management
AWS Accounts & Profiles
┏━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Name ┃ Nickname ┃ Category ┃ Account ID ┃ Health ┃ Type ┃ Description ┃
┡━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ prod-account │ Production │ production │ 123456789012 │ ✓ healthy│ SSO │ Main production account │
│ staging │ — │ staging │ 123456789013 │ ✓ healthy│ SSO │ Staging environment │
│ dev-team │ — │ development │ 123456789014 │ ⚠ warning│ Profile │ Development account │
└─────────────────┴──────────────┴──────────────┴────────────────┴──────────┴──────────┴─────────────────────────┘
Account Summary
Total Accounts: 3
Healthy Accounts: 2 / 3
Categories:
production: 1 accounts
staging: 1 accounts
development: 1 accounts
ARN Utilities
AWS Super CLI provides smart ARN handling to make long AWS resource names manageable:
ARN Utility Commands
aws-super-cli explain arn:aws:iam::123456789012:user/john-doe # Explain ARN components
aws-super-cli ls iam # Smart ARN display (default)
aws-super-cli ls iam --show-full-arns # Show complete ARNs
ARN Utility Features
Smart Display:
- Human-readable names by default (e.g., "john-doe" instead of full ARN)
- Service-specific truncation rules (IAM: 25 chars, EC2: 20 chars, S3: 30 chars)
- Full ARN access available with
--show-full-arnsflag
ARN Explanation:
- Break down ARN components with detailed descriptions
- Service-specific pattern matching and analysis
- Human-readable resource identification
Example ARN Output
aws-super-cli explain arn:aws:iam::123456789012:user/john-doe
ARN Breakdown
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Component ┃ Value ┃ Description ┃
┡━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ Partition │ aws │ AWS partition (standard AWS regions) │
│ Service │ iam │ AWS Identity and Access Management │
│ Region │ (empty) │ IAM is a global service │
│ Account │ 123456789012 │ AWS account ID │
│ Resource │ user/john-doe │ IAM user named john-doe │
└────────────┴────────────────────┴─────────────────────────────────────────────────────────────┘
Human-readable name: john-doe
Security Auditing
AWS Super CLI provides comprehensive security auditing across your AWS infrastructure:
Basic Security Commands
aws-super-cli audit # Comprehensive security audit (S3, IAM, Network)
aws-super-cli audit --summary # Quick security overview with scoring
aws-super-cli audit --all-accounts # Security audit across all accounts
aws-super-cli audit --services network # Network security only
aws-super-cli audit --services s3,iam # S3 and IAM audit only
Security Coverage
S3 Security:
- Public bucket detection and policy analysis
- Encryption configuration and KMS key management
- Versioning, lifecycle, and access logging verification
- Account-level and bucket-level public access blocks
- HTTPS/TLS enforcement validation
IAM Security:
- Overprivileged users and admin policy detection
- MFA enforcement checking across all users
- Access key age analysis and rotation recommendations
- Inactive user identification (90+ days)
- Custom policy wildcard permission detection
Network Security:
- Security groups with SSH/RDP open to world (0.0.0.0/0)
- Overly permissive security group rules
- Unused security groups identification
- Network ACL configuration analysis
- VPC Flow Logs status verification
- Subnet public IP auto-assignment analysis
Example Security Output
Security Audit Summary
Security Score: 65/100
Total Findings: 43
High Risk: 14
Medium Risk: 15
Low Risk: 14
Findings by Service:
EC2: 23
VPC: 20
┏━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Severity ┃ Service ┃ Resource ┃ Finding ┃ Description ┃
┡━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ HIGH │ EC2 │ launch-wizard-4 (sg-0bd7faf2ca62547e9) │ SSH_OPEN_TO_W… │ Security group allows SSH (port 22) from anywhere │
│ HIGH │ S3 │ my-public-bucket │ PUBLIC_POLICY │ Bucket policy allows public access via wildcard │
│ MEDIUM │ VPC │ vpc-12345678 │ NO_FLOW_LOGS │ VPC does not have Flow Logs enabled │
└──────────┴─────────┴─────────────────────────────────────────┴────────────────┴───────────────────────────────────────────────────────┘
Cost Analysis
AWS Super CLI provides comprehensive cost analysis using AWS Cost Explorer API:
Basic Cost Commands
aws-super-cli cost summary # Overview with trends and credit breakdown
aws-super-cli cost top-spend # Top spending services (gross costs)
aws-super-cli cost with-credits # Top spending services (net costs after credits)
aws-super-cli cost month # Current month costs (matches AWS console)
aws-super-cli cost daily --days 7 # Daily cost trends
aws-super-cli cost by-account # Multi-account cost breakdown
Credit Analysis
aws-super-cli cost credits # Credit usage trends and burn rate
aws-super-cli cost credits-by-service # Service-level credit breakdown
Key Features
- Gross vs Net costs: Separate "what you'd pay" from "what you actually pay"
- Console accuracy: Matches AWS Billing console exactly (fixes API/console discrepancy)
- Credit transparency: See exactly where promotional credits are applied
- Service-level breakdown: Which services consume most credits with coverage percentages
- Trend analysis: Historical patterns and monthly forecasting
Example Output
Cost Summary
Period: Last 30 days
Gross Cost (without credits): $665.75
Net Cost (with credits): $-0.05
Credits Applied: $665.79
Daily Average (gross): $22.19
Trend: ↗ +123.7%
Top Services by Credit Usage
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Service ┃ Gross Cost ┃ Credits Applied ┃ Net Cost ┃ Coverage ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Amazon Relational Database Service │ $366.62 │ $366.62 │ <$0.01 │ 100.0% │
│ Amazon Elastic Compute Cloud - Compute │ $89.65 │ $89.65 │ $0.00 │ 100.0% │
│ Amazon Virtual Private Cloud │ $83.05 │ $83.05 │ $0.00 │ 100.0% │
└────────────────────────────────────────┴──────────────┴─────────────────┴──────────────┴────────────┘
Supported Services
| Service | Command | Multi-Account | Security Audit | Account Management | ARN Utilities |
|---|---|---|---|---|---|
| Account Management | aws-super-cli accounts |
✅ | N/A | ✅ | N/A |
| Security Audit | aws-super-cli audit |
✅ | ✅ | N/A | N/A |
| ARN Explanation | aws-super-cli explain |
N/A | N/A | N/A | ✅ |
| EC2 | aws-super-cli ls ec2 |
✅ | ✅ | N/A | ✅ |
| S3 | aws-super-cli ls s3 |
✅ | ✅ | N/A | ✅ |
| VPC | aws-super-cli ls vpc |
✅ | ✅ | N/A | ✅ |
| RDS | aws-super-cli ls rds |
✅ | ✅ | N/A | ✅ |
| Lambda | aws-super-cli ls lambda |
✅ | ✅ | N/A | ✅ |
| ELB | aws-super-cli ls elb |
✅ | ✅ | N/A | ✅ |
| IAM | aws-super-cli ls iam |
✅ | ✅ | N/A | ✅ |
Multi-Account Support
aws-super-cli automatically discovers AWS profiles and provides advanced account management:
# Account management and organization
aws-super-cli accounts # Smart account listing with health checks
aws-super-cli accounts --category production # Filter by environment type
aws-super-cli accounts-dashboard # Comprehensive overview
aws-super-cli accounts-health # Detailed health monitoring
# Multi-account operations
aws-super-cli audit --all-accounts # Security audit across all accounts
aws-super-cli ls ec2 --all-accounts # Query all accessible accounts
aws-super-cli ls s3 --accounts "prod-account,staging-account" # Query specific accounts
aws-super-cli ls rds --accounts "prod-*" # Pattern matching
Usage Examples
Account management:
# Smart account organization
aws-super-cli accounts # List with smart categorization
aws-super-cli accounts --category production # Focus on production accounts
aws-super-cli accounts-nickname prod "Production Environment" # Set friendly names
aws-super-cli accounts-dashboard # Comprehensive account overview
# Account health monitoring
aws-super-cli accounts-health # Detailed health assessment
aws-super-cli accounts --no-health-check # Fast listing without health checks
ARN utilities:
# Human-readable ARN display
aws-super-cli ls iam # Smart ARN truncation (default)
aws-super-cli ls iam --show-full-arns # Full ARNs when needed
aws-super-cli explain arn:aws:iam::123456789012:user/john-doe # ARN breakdown
# Service-specific ARN handling
aws-super-cli ls ec2 # EC2 instance names (20 char limit)
aws-super-cli ls s3 # S3 bucket names (30 char limit)
Security auditing:
# Comprehensive security audit across all services
aws-super-cli audit --summary
# Network security assessment only
aws-super-cli audit --services network
# Multi-account security posture
aws-super-cli audit --all-accounts --summary
# Detailed security findings with remediation
aws-super-cli audit --services s3,iam,network
Resource discovery:
# Find all running production instances
aws-super-cli ls ec2 --all-accounts --state running --match prod
# Audit IAM users across production accounts
aws-super-cli ls iam --accounts "prod-*" --iam-type users
# Find PostgreSQL databases
aws-super-cli ls rds --engine postgres --all-accounts
Cost analysis:
# Monthly financial review
aws-super-cli cost summary
aws-super-cli cost month
aws-super-cli cost credits
# Cost optimization research
aws-super-cli cost top-spend --days 7
aws-super-cli cost credits-by-service
aws-super-cli cost daily --days 30
# Multi-account cost breakdown
aws-super-cli cost by-account
Why AWS Super CLI?
| Feature | AWS CLI v2 | AWS Super CLI | Other Tools |
|---|---|---|---|
| Account management | None | Smart categorization & health | None |
| ARN utilities | None | Human-readable display | None |
| Security auditing | None | Comprehensive | Basic/None |
| Network security analysis | None | Advanced | Limited |
| Multi-account queries | Manual switching | Automatic parallel | Varies |
| Output format | JSON only | Rich tables | Varies |
| Cost analysis | None | Advanced | Basic |
| Credit tracking | None | Service-level | None |
| Setup complexity | Medium | Zero config | High |
AWS Super CLI is the only tool that provides comprehensive account management, ARN utilities, and security auditing with service-level credit usage analysis.
Technical Details
Cost Explorer Integration
AWS Super CLI fixes a major discrepancy between AWS Cost Explorer API and the AWS Console. The console excludes credits by default, but the API includes them, causing confusion. AWS Super CLI handles this correctly and provides both views.
Multi-Account Architecture
- Automatically discovers profiles from
~/.aws/configand~/.aws/credentials - Executes API calls in parallel across accounts and regions
- Handles AWS SSO, IAM roles, and standard credentials
- Respects rate limits and implements proper error handling
Performance
- Parallel API calls across accounts/regions
- Efficient data aggregation and formatting
- Minimal API requests (most resource listing is free)
- Cost Explorer API usage: ~$0.01 per cost analysis command
Configuration
AWS Super CLI uses your existing AWS configuration. No additional setup required.
Supports:
- AWS profiles
- AWS SSO
- IAM roles
- Environment variables
- EC2 instance profiles
Requirements
- Python 3.8+
- AWS credentials configured
- Permissions:
- Security auditing:
ec2:Describe*,s3:GetBucket*,s3:GetPublicAccessBlock,iam:List*,iam:Get* - Resource listing:
ec2:Describe*,s3:List*,rds:Describe*,lambda:List*,elasticloadbalancing:Describe*,iam:List*,sts:GetCallerIdentity - Cost analysis:
ce:GetCostAndUsage,ce:GetDimensionValues
- Security auditing:
API Costs
| Operation | Cost | Commands |
|---|---|---|
| Resource listing | Free | All aws-super-cli ls commands |
| Cost Explorer API | $0.01/request | aws-super-cli cost commands |
Monthly cost estimate: $0.50-2.00 for typical usage.
Advanced Usage
Security auditing:
# Debug security audit issues
aws-super-cli audit --debug
# Audit specific services only
aws-super-cli audit --services network,s3
# Regional security audit
aws-super-cli audit --region us-west-2 --services network
Debugging:
aws-super-cli cost summary --debug
aws-super-cli ls ec2 --all-accounts --debug
aws-super-cli test
Filtering:
# Fuzzy matching
aws-super-cli ls ec2 --match "web"
# Specific filters
aws-super-cli ls ec2 --state running --instance-type "t3.*"
aws-super-cli ls ec2 --tag "Environment=prod"
# Time-based cost analysis
aws-super-cli cost daily --days 14
aws-super-cli cost summary --days 90
Contributing
Contributions welcome. Areas of interest:
- Additional AWS service support
- Enhanced cost analysis features
- Multi-account support for more services
- Performance optimizations
License
Apache 2.0
AWS Super CLI - AWS security auditing, multi-account resource discovery, and service-level cost intelligence.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aws_super_cli-0.12.2.tar.gz.
File metadata
- Download URL: aws_super_cli-0.12.2.tar.gz
- Upload date:
- Size: 75.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bfea7d05d67dc0bfba15fd8970331cb69026b7f7e03862a3c5014a3c6a2a02d8
|
|
| MD5 |
36b2b41c16f312d0d89df438da21876f
|
|
| BLAKE2b-256 |
a06a091b467a963c4e18f36f08abc96feb933cb4cdfca6acde5f7fe45adc0cd7
|
File details
Details for the file aws_super_cli-0.12.2-py3-none-any.whl.
File metadata
- Download URL: aws_super_cli-0.12.2-py3-none-any.whl
- Upload date:
- Size: 81.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
976916f2775fad0f977c86bd8ac181c18bd8b1f8d39779f32099ef49014ed876
|
|
| MD5 |
079f10a4e18b33d3d63f3677b32a3d7a
|
|
| BLAKE2b-256 |
32fc93a2801a6bdb1831928f2f9380521b9ce3396362bc7e5a81ed969f5ae68a
|