The Plan Summary Generator turns a Terraform plan JSON into a crisp report. It counts how many resources will be added, changed, destroyed and replaced, and lists the affected addresses under each heading. A raw plan JSON is verbose and hard to skim in a pull request; a one page summary with clear numbers is far easier for a reviewer to trust, and it answers the only question a manager actually asks: what changes and how risky is it.
You paste the JSON produced by terraform show -json, click generate, and receive a Markdown report you can copy into a comment, download as a file, or print. The tool also distinguishes replacements (delete plus create) from plain deletes, because a replacement usually means downtime while a delete may simply remove an unused resource. Everything runs locally in your browser, so no infrastructure detail leaves your machine. This makes it a good fit for change advisory boards, weekly drift reviews, and post incident audits where a human readable record of intent matters. The summary is intentionally short so it can live next to the plan in a ticket, and the Copy as JSON action lets you feed the same counts into a dashboard or a policy check without re-parsing the plan.