Skip to content

v1.9.0

Choose a tag to compare

@dflook dflook released this 10 Apr 15:25
Immutable release. Only release title and notes can be modified.
13bc2fa

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-config

You can specify an action version as:

  • @v1.9.0 to use exactly this release
  • @v1.9 to use the latest patch release for this specific minor version
  • @v1 to use the latest patch release for this specific major version

Changes

Added

  • variables input for actions that use terraform input variables.

    This value should be valid terraform syntax - like a variable definition file.
    Variable values set in variables override any given in var_files.
    See action documentation for details, e.g. terraform-plan.

Deprecated

  • The var input 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 var will be overridden by values contained in var_files

    variables is the preferred way to set input variables.