Skip to content

v1.8.0

Choose a tag to compare

@dflook dflook released this 05 Apr 08:02
Immutable release. Only release title and notes can be modified.
578788e

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

You can specify an action version as:

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

  • TERRAFORM_CLOUD_TOKENS environment variable for use with Terraform Cloud/Enterprise etc
    when using module registries or a remote backend.

  • TERRAFORM_SSH_KEY environment variable to configure an SSH private key to use for
    Git Repository module sources.

See individual actions for details, e.g. terraform-validate.