v1.27.0
All the terraform actions in this repository are released as one.
Use the actions as part of a GitHub Actions workflow, e.g:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dflook/[email protected]
with:
path: my-terraform-config
You can specify an action version as:
@v1.27.0
to use exactly this release@v1.27
to use the latest patch release for this specific minor version@v1
to use the latest patch release for this specific major version
Changes
Added
-
dflook/terraform-plan and dflook/terraform-apply now work with plans that are too large to fit in a PR comment.
If plan is too large it will be truncated in the comment, with the full plan viewable in the workflow log.
When dflook/terraform-apply aborts the apply because the plan is outdated, a partial diff will be shown in the workflow log with a link to the workflow with the full plan for direct comparison.
Fixed
- Warnings are ignored when deciding if a plan has changed and should no longer cause aborted applies if the order of the warnings changes.
- The unchanged resource attribute count is ignored when deciding if a plan has changed and should no longer cause aborted applies with harmless provider version changes.