2022-09-20 07:38:22 -04:00
|
|
|
name: Terraform validation
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
paths:
|
|
|
|
- "**.tf"
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- "**.tf"
|
|
|
|
|
|
|
|
# Abort runs of *this* workflow, if a new commit with the same ref is pushed.
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
tfsec:
|
|
|
|
name: terraform
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-10-13 10:54:43 -04:00
|
|
|
uses: actions/checkout@8230315d06ad95c617244d2f265d237a1682d445
|
2022-09-20 07:38:22 -04:00
|
|
|
with:
|
|
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
|
|
|
|
- name: Setup Terraform
|
|
|
|
uses: hashicorp/setup-terraform@17d4c9b8043b238f6f35641cdd8433da1e6f3867
|
|
|
|
|
|
|
|
- name: Terraform format and validate
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
dirs=$(find . -type f -name "*.tf" -exec dirname "{}" \; | sort -ud)
|
|
|
|
result=0
|
|
|
|
for dir in $dirs; do
|
|
|
|
echo "Checking $dir"
|
|
|
|
terraform -chdir=$dir init || result=1
|
|
|
|
terraform -chdir=$dir fmt -check=true -diff=true || result=1
|
|
|
|
terraform -chdir=$dir validate -no-color || result=1
|
|
|
|
done
|
|
|
|
exit $result
|