CloudOps Tools

Getting Started

Welcome to CloudOps Tools, a powerful CLI for AWS cloud operations and inventory management.

What is CloudOps Tools?

CloudOps Tools is a command-line utility that helps you:

  • Inventory AWS resources across multiple regions and services
  • Generate reports in CSV, Excel, or JSON format
  • Describe resources in detail with Markdown output
  • Audit security configurations across your infrastructure

Quick Start

# Install
bun install -g cloudops-tools

# Run a basic inventory scan
cloudops-tools --region us-east-1

# Generate a cross-region security audit
cloudops-tools init --mode security --export-format xlsx

Core Commands

CommandDescription
cloudops-toolsRun a basic inventory scan
initCross-region inventory with advanced options
describeGet detailed resource information
configManage persistent settings
setup-totpConfigure MFA authentication

Common Use Cases

Basic Inventory

cloudops-tools --region us-east-1

Multi-Region Scan

cloudops-tools init --limit-regions us-east-1,eu-west-1,ap-southeast-1

Security Audit

cloudops-tools init --mode security --export-format xlsx

Specific Services Only

cloudops-tools --services EC2,RDS,Lambda --region us-east-1

Describe a Specific Resource

cloudops-tools describe ec2 us-east-1 i-1234567890abcdef0

Next Steps