-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #375 from DFE-Digital/github-ci-terraform
Consolidated Terraform tasks into single workflow
- Loading branch information
Showing
3 changed files
with
29 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
name: Validate terraform | ||
name: Continuous Integration / Terraform | ||
|
||
on: | ||
push: | ||
branches: main | ||
paths: | ||
- 'terraform/**.tf' | ||
pull_request: | ||
paths: | ||
- 'terraform/**.tf' | ||
|
||
jobs: | ||
terraform-validate: | ||
name: Terraform Validate | ||
name: Validate | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
|
@@ -23,41 +27,46 @@ jobs: | |
exit 1 | ||
fi | ||
- name: Validate Terraform docs | ||
uses: terraform-docs/[email protected] | ||
with: | ||
working-dir: terraform | ||
config-file: .terraform-docs.yml | ||
output-file: README.md | ||
output-method: inject | ||
fail-on-diff: true | ||
|
||
- name: Remove azure backend | ||
run: rm ./terraform/backend.tf | ||
|
||
- name: Run a Terraform init | ||
uses: docker://hashicorp/terraform:1.5.5 | ||
uses: docker://hashicorp/terraform:1.5.6 | ||
with: | ||
entrypoint: terraform | ||
args: -chdir=terraform init | ||
|
||
- name: Run a Terraform validate | ||
uses: docker://hashicorp/terraform:1.5.5 | ||
uses: docker://hashicorp/terraform:1.5.6 | ||
with: | ||
entrypoint: terraform | ||
args: -chdir=terraform validate | ||
|
||
- name: Run a Terraform format check | ||
uses: docker://hashicorp/terraform:1.5.5 | ||
uses: docker://hashicorp/terraform:1.5.6 | ||
with: | ||
entrypoint: terraform | ||
args: -chdir=terraform fmt -check=true -diff=true | ||
terraform-docs-validation: | ||
name: Terraform Docs validation | ||
needs: terraform-validate | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup TFLint | ||
uses: terraform-linters/setup-tflint@v3 | ||
with: | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
tflint_version: v0.44.1 | ||
|
||
- name: Generate Terraform docs | ||
uses: terraform-docs/[email protected] | ||
- name: Run TFLint | ||
working-directory: terraform | ||
run: tflint -f compact | ||
|
||
- name: Run TFSec | ||
uses: aquasecurity/[email protected] | ||
with: | ||
working-dir: terraform | ||
config-file: .terraform-docs.yml | ||
output-file: README.md | ||
output-method: inject | ||
fail-on-diff: true | ||
github_token: ${{ github.token }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.