v1.48.0
·
56 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@v4
- uses: dflook/[email protected]
with:
path: my-terraform-configYou can specify an action version as:
@v1.48.0to use exactly this release@v1.48to use the latest patch release for this specific minor version@v1to use the latest patch release for this specific major version
Changes
Added
-
A
refreshinput for dflook/terraform-plan/tofu-plan and dflook/terraform-apply/tofu-applyThis defaults to
truewith the current behaviour of refreshing the state before planning or applying.
When set tofalsethe state will not be refreshed, which can be a lot faster but may result in an outdated plan. -
New dflook/terraform-refresh/tofu-refresh actions to update the state file to match the current state of the infrastructure, but without making any changes to the infrastructure.