Terraform Plan Visualizer
Paste the output of terraform show -json plan.tfplan and see a human-friendly overview of what will change.
Upload Terraform Plan
Drag and drop your plan.json file or paste the JSON content below
💡How to generate your plan file
Run these commands in your Terraform project directory:
# Step 1: Create the plan file terraform plan -out=plan.tfplan # Step 2: Convert to JSON format terraform show -json plan.tfplan > plan.json
Tip: Upload the generated
plan.json file to see detailed analysis of your infrastructure changes