We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b145930 commit 3f88566Copy full SHA for 3f88566
.github/workflows/ci.yml
@@ -17,4 +17,14 @@ jobs:
17
- name: Validate
18
run: terraform validate
19
- name: Formatting
20
- run: terraform fmt -check
+ run: terraform fmt -recursive -check -diff -no-color
21
+ # https://github.com/marketplace/actions/setup-tflint
22
+ - name: Lint
23
+ uses: terraform-linters/setup-tflint@v3
24
+ with:
25
+ tflint_version: latest
26
+ - id: tflint
27
+ run: tflint --recursive --format compact
28
+ # https://github.com/marketplace/actions/tfsec-action
29
+ - name: tfsec
30
+ uses: aquasecurity/tfsec-action@v1.0.0
0 commit comments