CloudOps Tools

Commands Overview

CloudOps Tools provides several commands for AWS resource inventory and management.

Main Command

The root command cloudops-tools runs a basic inventory scan with configurable options.

cloudops-tools [options]

Subcommands

CommandDescription
initGenerate cross-region inventory scan with advanced options
describeDeeply describe a specific AWS resource
setup-totpConfigure TOTP secret for MFA authentication
configManage persistent configuration

Global Options

These options are available on the main command:

OptionAliasDescriptionDefault
--account-aAWS account or profile nameAuto-detected
--region-rAWS region(s), comma-separatedus-east-1
--export-format-fExport format (csv, xlsx, json, both, all)csv
--services-sComma-separated list of services to scanAll services
--describeDescribe all resources of a type-
--skip-globalSkip global services (S3, IAM, CloudFront, etc.)false
--only-globalScan only global servicesfalse
--debugShow raw error output with stack tracesfalse

Quick Examples

# Basic inventory for us-east-1
cloudops-tools

# Inventory for multiple regions
cloudops-tools --region us-east-1,eu-west-1

# Scan specific services only
cloudops-tools --services EC2,RDS,S3 --region us-east-1

# Export to Excel format
cloudops-tools --export-format xlsx

# Describe all RDS instances in a region
cloudops-tools --describe rds --region eu-south-2