Skip to content

v1.35.0

Compare
Choose a tag to compare
@dflook dflook released this 18 Jun 14:59
· 159 commits to main since this release
941c05e

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@v3

    - uses: dflook/[email protected]
      with:
        path: my-terraform-config

You can specify an action version as:

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

  • Support for partial or empty cloud blocks. This means you can use a placeholder cloud block in your terraform, like so:
terraform {
  cloud {
  }
}

The configuration will be completed with the TF_CLOUD_ORGANIZATION and TF_CLOUD_HOSTNAME environment variables - the workspace should be specified using the workspace input.
As always, any tokens can be supplied in the TERRAFORM_CLOUD_TOKENS environment variable.