CloudBurn CLI

CloudBurn CLI

Command-line tool for scanning IaC templates and discovering cost optimization opportunities in live AWS accounts.

The CloudBurn CLI gives you two ways to find cost savings in your AWS infrastructure:

  • IaC scan — static analysis of Terraform (.tf) and CloudFormation (.json, .yaml, .yml) files before deployment
  • Live discovery — real-time scan of resources running in your AWS account via Resource Explorer

IaC scan flow

Discovery flow

Which command do I need?

GoalCommand
Scan local IaC filescloudburn scan
Scan live AWS resourcescloudburn discover
Set up AWS Resource Explorercloudburn discover init
Check Resource Explorer statuscloudburn discover status
Generate a config filecloudburn config --init
Print current configcloudburn config --print
List available rulescloudburn rules list
Check estimate connectivitycloudburn estimate
Set up shell completionscloudburn completion

Global flags

These flags apply to all commands and must be passed before the subcommand:

FlagTypeDescription
--debugbooleanWrite execution trace messages to stderr
--format"table" or "json"Output format (default: "table")
cloudburn --debug discover
cloudburn --format json scan ./iac

Programmatic use

Need to integrate CloudBurn into your own tooling? See the SDK documentation.

What's next