Terraform GitHub Actions allow you to execute 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.
Terraform GitHub Actions are a single GitHub Action that executes different Terraform subcommands depending on the content of the GitHub Actions YAML file.
An exit code of 0
is considered a successful execution.
The most common workflow is to run terraform fmt
, terraform init
, terraform validate
, terraform plan
, and terraform taint
on all of the Terraform files in the root of the repository when a pull request is opened or updated. A comment will be posted to the pull request depending on the output of the Terraform subcommand being executed. This workflow can be configured by adding the following content to the GitHub Actions workflow YAML file.
name: 'Terraform GitHub Actions'
on:
- pull_request
env:
tf_version: 'latest'
tf_working_dir: '.'
jobs:
terraform:
name: 'Terraform'
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@master
- name: 'Terraform Format'
uses: hashicorp/terraform-github-actions@master
with:
tf_actions_version: ${{ env.tf_version }}
tf_actions_subcommand: 'fmt'
tf_actions_working_dir: ${{ env.tf_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: ${{ env.tf_version }}
tf_actions_subcommand: 'init'
tf_actions_working_dir: ${{ env.tf_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: ${{ env.tf_version }}
tf_actions_subcommand: 'validate'
tf_actions_working_dir: ${{ env.tf_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: ${{ env.tf_version }}
tf_actions_subcommand: 'plan'
tf_actions_working_dir: ${{ env.tf_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 other common workflows.
Inputs configure Terraform GitHub Actions to perform different actions.
tf_actions_subcommand
- (Required) The Terraform subcommand to execute. Valid values arefmt
,init
,validate
,plan
, andapply
.tf_actions_version
- (Required) The Terraform version to install and execute. If set tolatest
, the latest stable version will be used.tf_actions_cli_credentials_hostname
- (Optional) Hostname for the CLI credentials file. Defaults toapp.terraform.io
.tf_actions_cli_credentials_token
- (Optional) Token for the CLI credentials file.tf_actions_comment
- (Optional) Whether or not to comment on GitHub pull requests. Defaults totrue
.tf_actions_working_dir
- (Optional) The working directory to change into before executing Terraform subcommands. Defaults to.
which means use the root of the GitHub repository.tf_actions_fmt_write
- (Optional) Whether or not to writefmt
changes to source files. Defaults tofalse
.
Outputs are used to pass information to subsequent GitHub Actions steps.
tf_actions_output
- The Terraform outputs in (stringified) JSON format.tf_actions_plan_has_changes
-'true'
if the Terraform plan contained changes, otherwise'false'
.tf_actions_plan_output
- The Terraform plan output.tf_actions_fmt_written
- Whether or not the Terraform formatting fromfmt
was written to source files.
Secrets are similar to inputs except that they are encrypted and only used by GitHub Actions. It's a convenient way to keep sensitive data out of the GitHub Actions workflow YAML file.
GITHUB_TOKEN
- (Optional) The GitHub API token used to post comments to pull requests. Not required if thetf_actions_comment
input is set tofalse
.
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 not to use these Terraform GitHub Actions on repositories where untrusted users can submit pull requests.
Environment variables are exported in the environment where the Terraform GitHub Actions are executed. This allows a user to modify the behavior of certain GitHub Actions.
The usual Terraform environment variables are supported. Here are a few of the more commonly used environment variables.
TF_LOG
TF_VAR_name
TF_CLI_ARGS
TF_CLI_ARGS_name
TF_WORKSPACE
Other environment variables may be configured to pass data into Terraform. If the data is sensitive, consider using secrets instead.