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/terraform-plan@v2.1.0
with:
path: my-terraform-config
You can specify an action version as:
@v2.1.0
to use exactly this release@v2.1
to use the latest patch release for this specific minor version@v2
to use the latest patch release for this specific major version
Changes
Added
-
Support for the
exclude
feature in OpenTofu 1.9+. This adds a newexclude
input for dflook/tofu-plan, dflook/tofu-apply, and dflook/tofu-refresh actions.The
exclude
input allows specifying resources to exclude from operations, one per line. The operation will include all resources except the specified ones and their dependencies.with: exclude: | local_file.sensitive_config aws_instance.temp_resource
Requires OpenTofu 1.9+.