v1.32.0
·
296 commits
to main
since this release
Immutable
release. Only release title and notes can be modified.
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@v3
- uses: dflook/terraform-plan@v1.32.0
with:
path: my-terraform-configYou can specify an action version as:
@v1.32.0to use exactly this release@v1.32to use the latest patch release for this specific minor version@v1to use the latest patch release for this specific major version
Changes
Added
- A new dflook/terraform-state-unlock action. Thanks patricktalmeida for working on this!
- Actions that fail because the state was locked will now have the
failure-reasonoutput set tostate-locked.
They also have a newlock-infooutput which is a json object with any available lock information.
This affects dflook/terraform-apply, dflook/terraform-destroy, and dflook/terraform-destroy-worksapce.
Changed
- If a terraform operation fails because the state is locked the
failure-reasonoutput will now be set tostate-locked, where before it may have beenapply-failedordestroy-failed.