sue445/terraform-plan-changes-count
Action to count changes in `terraform plan`
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| plan-path | Path to plan report file. Pass same path as the one provided in `terraform plan -out`. | yes | — |
| working-directory | Working directory to running terraform command | no | ${{ github.workspace }} |
Outputs
| name | description |
|---|---|
| create | Count of create resources in plan-path |
| update | Count of update resources in plan-path |
| delete | Count of delete resources in plan-path |
| total | Count of total resources in plan-path (same to create + update + delete) |