CLI Usage

The Inkdrop CLI allows you to visualize your Terraform infrastructure from the command line. Run inkdrop with various options to customize the behavior.

Command Line Arguments

Tips and Tricks

  • Run inkdrop in the same directory where you run terraform plan.

  • Use --debug to troubleshoot any issues with diagram generation.

  • Set --renderer-port if 3000 is already in use on your machine.

  • Visualize multiple Terraform states simultaneously with --state-dirs.

Common Use Cases

Visualize Terraform Plan

terraform plan -out plan.out
inkdrop plan.out

Visualize Current State

inkdrop --state-dirs ./infra

Debug in Verbose Mode

inkdrop plan.out --debug

Let me know if you need any other CLI usage information!

Last updated