Terraform Visual CLI
Terraform Visual CLI is an easy-to-use command line tool to generate an interactive static HTML page visualizing provided Terraform plan.

Installation
$ yarn global add @terraform-visual/cli
$ npm install -g @terraform-visual/cli
Usage
Convert Terraform Plan into JSON File
$ terraform plan -out=plan.out
$ terraform show -json plan.out > plan.json
Create Terraform Visual Report
$ terraform-visual --plan plan.json
Browse The Report
$ open terraform-visual-report/index.html
Options
out | X | . | Relative path from current dir to generate Terraform-Visual report |
plan | V | n/a | Relative path to the generated plan JSON file |