Skip to content

v1.21.0

Compare
Choose a tag to compare
@dflook dflook released this 04 Dec 18:51
83b8fe9

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.21.0
      with:
        path: my-terraform-config

You can specify an action version as:

  • @v1.21.0 to use exactly this release
  • @v1.21 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

  • A new workspace input for dflook/terraform-validate allows validating usage of terraform.workspace in the terraform code.

    Terraform doesn't initialize terraform.workspace based on the backend configuration when running a validate operation.
    This new input allows setting the full name of the workspace to use while validating, even when you wouldn't normally do so for a plan/apply (e.g. when using the remote backend)