terraform-github-actions

GitHub actions for terraform

Stars
766
Committers
18

Bot releases are hidden (Show)

terraform-github-actions - v1.5.1

Published by dflook almost 4 years ago

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/[email protected]
      with:
        path: my-terraform-config

You can specify an action version as:

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

Changes

Fixed

  • PR comments had an empty plan with Terraform 0.14
terraform-github-actions - v1.5.0

Published by dflook about 4 years ago

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/[email protected]
      with:
        path: my-terraform-config

You can specify an action version as:

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

  • PR comments use HCL highlighting
terraform-github-actions - v1.4.2

Published by dflook about 4 years ago

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/[email protected]
      with:
        path: my-terraform-config

You can specify an action version as:

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

Changes

Fixed

  • Using a personal access token instead of the Actions provided token now works.
    This can be used to customise the PR comment author
terraform-github-actions - v1.4.1

Published by dflook about 4 years ago

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/[email protected]
      with:
        path: my-terraform-config

You can specify an action version as:

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

Changes

Fixed

  • Latest Terraform versions with a patch version of '0' are correctly detected.
    If not otherwise specified the latest terraform version is used. As of now the latest is v0.13.0.
terraform-github-actions - v1.4.0

Published by dflook about 4 years ago

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/[email protected]
      with:
        path: my-terraform-config

You can specify an action version as:

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

Fixed

  • Plan errors are now correctly added to the workflow log.
terraform-github-actions - v1.3.1

Published by dflook about 4 years ago

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/[email protected]
      with:
        path: my-terraform-config

You can specify an action version as:

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

Changes

Fixed

  • backend_config_file and var_file now work correctly. Paths should be relative to the GitHub Action workspace.
terraform-github-actions - v1.3.0

Published by dflook about 4 years ago

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/[email protected]
      with:
        path: my-terraform-config

You can specify an action version as:

  • @v1.3.0 to use exactly this release
  • @v1.3 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 the remote backend used by Terraform Cloud
terraform-github-actions - v1.2.0

Published by dflook over 4 years ago

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/[email protected]
      with:
        path: my-terraform-config

You can specify an action version as:

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

Fixed

terraform-github-actions - v1.1.0

Published by dflook over 4 years ago

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/[email protected]
      with:
        path: my-terraform-config

You can specify an action version as:

  • @v1.1.0 to use exactly this release
  • @v1.1 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-github-actions - v1.0.0

Published by dflook over 4 years ago

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/[email protected]
      with:
        path: my-terraform-config

You can specify an action version as:

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

Changes

Added

Adds the actions:

Related Projects