Cloud Provider Command Helper
Interactive CLI command generator and cross-cloud Rosetta Stone for AWS, Google Cloud (GCP), Microsoft Azure, DigitalOcean, and Scaleway.
Get Caller Identity (Account, ARN, User)
Verify which AWS IAM account, role, or identity your active CLI session is using.
aws sts get-caller-identityConfigure AWS CLI Credentials
Prompt for AWS Access Key ID, Secret Access Key, default region, and output format.
aws configure --profile productionList EC2 Instances with Status and IP
Render a tabular overview of all virtual machines in the target AWS region.
aws ec2 describe-instances --region us-east-1 --query "Reservations[*].Instances[*].[InstanceId,InstanceType,State.Name,PublicIpAddress,PrivateIpAddress]" --output tableStart EC2 Instance
Boot up a previously stopped EC2 virtual machine.
aws ec2 start-instances --instance-ids i-0a1b2c3d4e5f6g7h8 --region us-east-1Stop EC2 Instance
Gracefully power down an EC2 instance to halt per-second compute billing.
aws ec2 stop-instances --instance-ids i-0a1b2c3d4e5f6g7h8 --region us-east-1SSH via AWS Systems Manager (No Public IP Needed)
Open an encrypted terminal session into an EC2 instance without opening port 22 or assigning public IPs.
aws ssm start-session --target i-0a1b2c3d4e5f6g7h8 --region us-east-1List S3 Buckets
Display all S3 storage buckets owned by your AWS account.
aws s3 lsUpload File to S3 Bucket
Copy a local document or asset directly into an Amazon S3 destination bucket.
aws s3 cp ./dist/app-bundle.tar.gz s3://company-assets-production/ --region us-east-1Synchronize Local Directory with S3
Recursively sync local files to S3, automatically pruning remote files deleted locally.
aws s3 sync ./dist/app-bundle.tar.gz s3://company-assets-production/ --delete --region us-east-1Calculate S3 Bucket Total Size & Object Count
Tally the total volume of gigabytes and file count contained within an S3 bucket.
aws s3 ls s3://company-assets-production --recursive --human-readable --summarizeUpdate Kubeconfig for Amazon EKS Cluster
Configure local ~/.kube/config to seamlessly control an AWS EKS managed Kubernetes cluster.
aws eks update-kubeconfig --region us-east-1 --name k8s-prod-clusterList EKS Clusters in Region
Enumerate all active Amazon Elastic Kubernetes Service clusters.
aws eks list-clusters --region us-east-1List RDS Database Instances
List relational database service instances, database engine versions, and DNS endpoints.
aws rds describe-db-instances --region us-east-1 --query "DBInstances[*].[DBInstanceIdentifier,Engine,DBInstanceStatus,Endpoint.Address]" --output tableList Lambda Serverless Functions
Display all AWS Lambda serverless functions and their configured runtimes.
aws lambda list-functions --region us-east-1 --query "Functions[*].[FunctionName,Runtime,LastModified]" --output tableTail CloudWatch Log Group Live
Follow live application or container stdout logs streaming to Amazon CloudWatch.
aws logs tail /aws/eks/prod-cluster/cluster --follow --region us-east-1Related Cloud & Infrastructure Utilities
Visual kubectl command generator, emergency playbooks, and resource short names.
Design and calculate cloud VPC subnets, usable host ranges, and network masks.
Format and validate CloudFormation, Kubernetes, and Azure ARM YAML manifests.
Visual helper for building Git operations, branching, and emergency undo flows.
5 Top Cloud Providers
Complete CLI command generator for AWS (aws-cli), Google Cloud (gcloud), Microsoft Azure (az), DigitalOcean (doctl), and Scaleway (scw).
Cross-Cloud Rosetta Stone
Direct command translations across clouds. Instantly find the equivalent syntax for VM control, storage, and Kubernetes kubeconfig.
Client-Side Parameterization
Fill in your bucket, cluster, instance, and region names with zero latency. No cluster credentials or cloud tokens are ever transmitted.
Frequently Asked Questions
Which cloud providers and CLIs are supported?
Are my cloud credentials, API tokens, or project IDs stored?
What is the Multi-Cloud Rosetta Stone feature?
Can I connect to a cloud VM without a public IP address or opening SSH ports?
More Dev Tools Utilities
Cron Generator & Expression Parser
Build, parse, and translate cron expressions visually. Features plain-English interpretation, next execution times (Local & UTC), and multi-platform snippets.
JSON Formatter
Format, beautify, minify, and validate JSON instantly. Adjustable indentation with real-time syntax validation and error feedback.
Markdown Preview
Write Markdown and see rendered HTML in real-time. Split-pane editor with copy Markdown/HTML.