You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Adjusting the CLI arguments to improve the UX
* Add the json output, adjust the documentation
* Fix the markdown output and adjust the dev installation
* Fix the unit tests
* Adjusting the Changelog
Copy file name to clipboardExpand all lines: docs/api/reporters.md
+36-6Lines changed: 36 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
## Overview
4
4
5
-
Reporters in **tfsumpy** are responsible for formatting and displaying the results of plan analysis. Each reporter implements a specific output format (e.g., CLI, Markdown, JSON). The primary built-in reporter is the `PlanReporter`, which provides human-friendly and Markdown output for Terraform plan summaries.
5
+
Reporters in **tfsumpy** are responsible for formatting and displaying the results of plan analysis. Each reporter implements a specific output format (e.g., CLI, Markdown, JSON). The primary built-in reporter is the `PlanReporter`, which provides multiple output formats for Terraform plan summaries.
6
6
7
7
---
8
8
@@ -36,26 +36,54 @@ class ReporterInterface(ABC):
36
36
37
37
## PlanReporter
38
38
39
-
The `PlanReporter` is the default reporter for plan summaries. It supports both colorized CLI output and Markdown output for sharing or documentation.
39
+
The `PlanReporter` is the default reporter for plan summaries. It supports three output formats:
0 commit comments