-
Notifications
You must be signed in to change notification settings - Fork 4
/
.pre-commit-config.yaml
38 lines (38 loc) · 1.01 KB
/
.pre-commit-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
fail_fast: false
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
exclude: README.md
- id: trailing-whitespace
exclude: README.md
- id: detect-aws-credentials
- id: detect-private-key
- repo: local
hooks:
- id: terraform_lint
name: Terraform lint
entry: make lint
language: system
- id: terraform_fmt
name: Terraform format
entry: make fmt
language: system
- id: terraform_validate
name: Terraform validate
entry: make validate
language: system
- id: terraform_sec
name: Terraform security
entry: make security
language: system
- id: terraform_checkov
name: Terraform static code analysis tool
entry: make checkov
language: system
- id: terraform_docs
name: Terraform documentation
entry: make docs
language: system