v2.2.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@v4
- uses: dflook/[email protected]
with:
path: my-terraform-config
You can specify an action version as:
@v2.2.0
to use exactly this release@v2.2
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
-
New
json_output_path
output for dflook/terraform-apply, dflook/terraform-output, dflook/terraform-remote-state, dflook/tofu-apply, dflook/tofu-output, and dflook/tofu-remote-state actions.The
json_output_path
output points to a JSON file containing all root module outputs in a simple key-value format.
This addresses GitHub Actions' output size limitations and enables easier access to all outputs as a single object.