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
When running terraform plan, the output includes a summary of resource changes (e.g., how many resources will be created, updated, or destroyed). However, it can be tedious to quickly identify the total number of destroyed resources, which is often the most critical information to check.
Adding a similar high-level summary to tf-summarise would make it more user-friendly and align with common usage patterns.
Proposed Solution
Include a summary of changes in the output, formatted like:
....
Saved the plan to: tfplan
To perform exactly these actions, run the following command to apply:
terraform apply "tfplan"
+--------+-------------------------------------------------------------------------------------------+
| CHANGE | RESOURCE |
+--------+-------------------------------------------------------------------------------------------+
| add (2 in green) | module.my_modules.aws_appautoscaling_policy.this["cpu"] |
+ +-------------------------------------------------------------------------------------------+
| | module.my_modules.aws_appautoscaling_policy.this["memory"] |
+ +-------------------------------------------------------------------------------------------+
+--------+-------------------------------------------------------------------------------------------+
Thoughts?
The text was updated successfully, but these errors were encountered:
When running
terraform plan
, the output includes a summary of resource changes (e.g., how many resources will be created, updated, or destroyed). However, it can be tedious to quickly identify the total number of destroyed resources, which is often the most critical information to check.Adding a similar high-level summary to
tf-summarise
would make it more user-friendly and align with common usage patterns.Proposed Solution
Include a summary of changes in the output, formatted like:
Table:
Thoughts?
The text was updated successfully, but these errors were encountered: