v1.20.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.20.0
to use exactly this release@v1.20
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
-
New
text_plan_path
andjson_plan_path
outputs for dflook/terraform-apply to match the outputs for dflook/terraform-plan.These are paths to the generated plan in human-readable and JSON formats.
If the plan generated by dflook/terraform-plan is different from the plan generated by dflook/terraform-apply the apply step will fail with
failure-reason
set toplan-changed
. These new outputs make it easier to inspect the differences.