All Apps

Cloud Provider Command Helper

Client-SideOffline ReadyDev ToolsNo login required

Interactive CLI command generator and cross-cloud Rosetta Stone for AWS, Google Cloud (GCP), Microsoft Azure, DigitalOcean, and Scaleway.

Select Cloud Provider:
Auth & Identity

Get Caller Identity (Account, ARN, User)

Verify which AWS IAM account, role, or identity your active CLI session is using.

aws sts get-caller-identity
Auth & Identity

Configure AWS CLI Credentials

Prompt for AWS Access Key ID, Secret Access Key, default region, and output format.

aws configure --profile production
Compute (EC2)

List 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 table
Compute (EC2)

Start EC2 Instance

Boot up a previously stopped EC2 virtual machine.

aws ec2 start-instances --instance-ids i-0a1b2c3d4e5f6g7h8 --region us-east-1
Compute (EC2)

Stop 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-1
Compute (EC2)

SSH 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-1
Storage (S3)

List S3 Buckets

Display all S3 storage buckets owned by your AWS account.

aws s3 ls
Storage (S3)

Upload 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-1
Storage (S3)

Synchronize 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-1
Storage (S3)

Calculate 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 --summarize
Kubernetes (EKS)

Update 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-cluster
Kubernetes (EKS)

List EKS Clusters in Region

Enumerate all active Amazon Elastic Kubernetes Service clusters.

aws eks list-clusters --region us-east-1
Databases (RDS)

List 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 table
Serverless (Lambda)

List 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 table
Monitoring & Logs

Tail 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-1

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?
This tool supports the 5 major cloud providers: AWS (aws-cli v2), Google Cloud (gcloud CLI), Microsoft Azure (az CLI), DigitalOcean (doctl), and Scaleway (scw CLI).
Are my cloud credentials, API tokens, or project IDs stored?
No. Everything executes 100% locally in your client web browser. No credentials, tokens, bucket names, or cloud parameters are ever uploaded or tracked.
What is the Multi-Cloud Rosetta Stone feature?
The Cross-Cloud Rosetta Stone translates common DevOps tasks (such as listing virtual machines, fetching Kubernetes kubeconfig, uploading to object storage, or viewing caller identity) side-by-side across all 5 cloud CLIs.
Can I connect to a cloud VM without a public IP address or opening SSH ports?
Yes! AWS Systems Manager Session Manager ("aws ssm start-session --target <instance-id>"), GCP OS Login ("gcloud compute ssh"), and Azure SSH ("az ssh vm") allow secure browser or CLI terminal access without exposing public IP addresses or port 22.
Recommended For You

More Dev Tools Utilities

View all Dev Tools tools