v1.9.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/terraform-plan@v1.9.0
with:
path: my-terraform-configYou can specify an action version as:
@v1.9.0to use exactly this release@v1.9to use the latest patch release for this specific minor version@v1to use the latest patch release for this specific major version
Changes
Added
-
variablesinput for actions that use terraform input variables.This value should be valid terraform syntax - like a variable definition file.
Variable values set invariablesoverride any given invar_files.
See action documentation for details, e.g. terraform-plan.
Deprecated
-
The
varinput has been deprecated due to the following limitations:- Only primitive types can be set with
var- number, bool and string. - String values may not contain a comma.
- Values set with
varwill be overridden by values contained invar_files
variablesis the preferred way to set input variables. - Only primitive types can be set with