/terraform-github-actions

GitHub Actions For Terraform

Primary LanguageShellMozilla Public License 2.0MPL-2.0

Terraform GitHub Actions

Terraform GitHub Actions allow you to run Terraform commands within GitHub Actions.

The output of the actions can be viewed from the Actions tab in the main repository view. If the actions are executed on a pull request event, a comment may be posted on the pull request.

Success Criteria

An exit code of 0 is considered a successful execution.

Usage

The most common use case is to run terraform fmt, terraform init, terraform validate, and terraform plan on a pull request. A comment will be posted to the pull request depending on the output of the Terraform command being executed.

name: 'Terraform Pull Request Workflow'
on:
  - pull_request
jobs:
  example:
    name: 'Terraform Actions'
    runs-on: ubuntu-latest
    steps:
      - name: 'Checkout'
        uses: actions/checkout@master
      - name: 'Terraform Format'
        uses: hashicorp/terraform-github-actions@master
        with:
          tf_actions_version: 0.12.13
          tf_actions_subcommand: 'fmt'
          tf_actions_working_dir: '.'
          tf_actions_comment: true
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      - name: 'Terraform Init'
        uses: hashicorp/terraform-github-actions@master
        with:
          tf_actions_version: 0.12.13
          tf_actions_subcommand: 'init'
          tf_actions_working_dir: '.'
          tf_actions_comment: true
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      - name: 'Terraform Validate'
        uses: hashicorp/terraform-github-actions@master
        with:
          tf_actions_version: 0.12.13
          tf_actions_subcommand: 'validate'
          tf_actions_working_dir: '.'
          tf_actions_comment: true
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      - name: 'Terraform Plan'
        uses: hashicorp/terraform-github-actions@master
        with:
          tf_actions_version: 0.12.13
          tf_actions_subcommand: 'plan'
          tf_actions_working_dir: '.'
          tf_actions_comment: true
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

This was a simplified example showing the basic features of these Terraform GitHub Actions. Please refer to the examples within the examples directory for more complex usage examples.

Inputs

Name Required Default Description
tf_actions_version true Terraform version to install and execute.
tf_actions_subcommand true Terraform subcommand to execute. Valid values are fmt, init, validate, plan, and apply.
tf_actions_working_dir false . The working directory to change into before executing Terraform commands.
tf_actions_comment false true Whether or not to comment on pull requests.

Outputs

Name Description
tf_actions_plan_has_changes Whether or not the Terraform plan contained changes.

Secrets

Name Description
GITHUB_TOKEN The GitHub API token used to post comments to pull requests. Not required if tf_actions_comment is set to false.

Other secrets may be needed to authenticate with Terraform backends and providers.

WARNING: These secrets could be exposed if the action is executed on a malicious Terraform file. To avoid this, it is recommended to not use this action on public repos or repos where untrusted users can submit pull requests.

Environment Variables

The usual Terraform environment variables are supported. Here are the environment variables that might be the most beneficial.

Other environment variables may be configured to pass data into Terraform backends and providers. If the data is sensitive, consider using secrets instead.