Skip to content
/ tfe-run Public

The glue between GitHub Actions and Terraform Cloud

License

Notifications You must be signed in to change notification settings

kvrhdn/tfe-run

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

tfe-run Action

CI Integration Go Report Card

This GitHub Action creates a new run on Terraform Cloud. Integrate Terraform Cloud into your GitHub Actions workflow.

This action creates runs using the Terraform Cloud API which provides more flexibility than using the CLI. Namely, you can:

  • define your own message (no more "Queued manually using Terraform")
  • provide as many variables as you want
  • access the outputs from the Terraform state

Internally, we leverage the official Go API client from Hashicorp.

How to use it

- uses: kvrhdn/tfe-run@v1
  with:
    token: ${{ secrets.TFE_TOKEN }}
    workspace: tfe-run
    message: |
      Run triggered using tfe-run (commit: ${{ github.SHA }})
  id: tfe-run

... next steps can access the run URL with ${{ steps.tfe-run.outputs.run-url }}

Full option list:

- uses: kvrhdn/tfe-run@v1
  with:
    # Token used to communicate with the Terraform Cloud API. Must be a user or
    # team api token.
    token: ${{ secrets.TFE_TOKEN }}

    # Name of the organization on Terraform Cloud. Defaults to the GitHub
    # organization name.
    organization: kvrhdn

    # Name of the workspace on Terraform Cloud.
    workspace: tfe-run

    # Optional message to use as name of the run.
    message: |
      Run triggered using tfe-run (commit: ${{ github.SHA }})

    # The directory that is uploaded to Terraform Cloud/Enterprise, defaults
    # to the repository root. Respsects .terraformignore. Note: this is
    # prefixed to the "Terraform Working Directory" in the remote workspace
    # settings.
    directory: integration/

    # The type of run, allowed options are 'plan', 'apply' and 'destroy'.
    type: apply

    # An optional list of resource addresses to target. Should be a list of
    # strings separated by new lines.
    #
    # For more information about resource targeting, check https://www.terraform.io/docs/commands/plan.html#resource-targeting
    targets: |
        resource.name

    # Whether we should wait for the plan or run to be applied. This will block
    # until the run is finished.
    wait-for-completion: true

    # The contents of a auto.tfvars file that will be uploaded to Terraform
    # Cloud. This can be used to set Terraform variables.
    tf-vars: |
      run_number = ${{ github.run_number }}
      service    = "example"

  # Optionally, assign this step an ID so you can refer to the outputs from the
  # action with ${{ steps.<id>.outputs.<output variable> }}
  id: tfe-run

Inputs

Name Required Description Type Default
token yes Token used to communicating with the Terraform Cloud API. Must be a user or team api token. string
organization Name of the organization on Terraform Cloud. string The repository owner
workspace yes Name of the workspace on Terraform Cloud. string
message Optional message to use as name of the run. string Queued by GitHub Actions (commit: $GITHUB_SHA)
directory The directory that is uploaded to Terraform Cloud/Enterprise, defaults to repository root. Respects .terraformignore. Note: this is prefixed to the "Terraform Working Directory" in the remote workspace settings. string ./
type The type of run, allowed options are 'plan', 'apply' and 'destroy'. string apply
targets An optional list of resource addresses to target. Should be a list of strings separated by new lines. string
wait-for-completion Whether we should wait for the plan or run to be applied. This will block until the run is finished. string false
tf-vars The contents of a auto.tfvars file that will be uploaded to Terraform Cloud. string

Outputs

Name Description Type
run-url URL of the run on Terraform Cloud string
has-changes Whether the run has changes. bool ('true' or 'false')
tf-** Outputs from the current Terraform state, prefixed with tf-. Only set for non-speculative runs. string

License

This Action is distributed under the terms of the MIT license, see LICENSE for details.

Development

For running tfe-run locally, see development.md.

For creating new release, see release-procedure.md.