Skip to content
This repository has been archived by the owner on Nov 17, 2024. It is now read-only.

chore(deps): update terraform tls to v4.0.5 #456

chore(deps): update terraform tls to v4.0.5

chore(deps): update terraform tls to v4.0.5 #456

Workflow file for this run

name: Terraform
on:
pull_request:
jobs:
check:
name: Check Terraform changes
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: hashicorp/setup-terraform@v2
with:
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}
- name: Terraform Format
id: fmt
run: terraform fmt -check -recursive
- name: Terraform Init
id: init
run: terraform init
- name: Terraform Validate
id: validate
run: terraform validate -no-color
plan:
name: Plan Terraform changes
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
needs:
- check
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: hashicorp/setup-terraform@v2
with:
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}
- name: Terraform PR
uses: tchupp/[email protected]
with:
github-token: ${{ github.token }}