-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tflint.hcl
68 lines (57 loc) · 2.3 KB
/
.tflint.hcl
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# tflint configuration
# This file configures how tflint (github.com/terraform-linters/tflint) should scan the repository
# https://github.com/terraform-linters/tflint/blob/master/docs/user-guide/config.md
config {
# Enable lint checks against Terraform Modules
module = true
# Disables forcing a 0 return code on finding errors
force = false
}
# Require that all providers have version constraints through required_providers
# https://github.com/terraform-linters/tflint/blob/v0.18.0/docs/rules/terraform_required_providers.md
rule "terraform_required_providers" {
enabled = true
}
# Ensure that a module complies with the Terraform Standard Module Structure
# https://github.com/terraform-linters/tflint/blob/v0.16.0/docs/rules/terraform_standard_module_structure.md
rule "terraform_standard_module_structure" {
enabled = true
}
# Enforce single line comments start with #
# https://github.com/terraform-linters/tflint/blob/v0.16.0/docs/rules/terraform_typed_variables.md
rule "terraform_comment_syntax" {
enabled = true
}
# Enforce the standardised Terraform naming convention
# https://github.com/terraform-linters/tflint/blob/master/docs/rules/terraform_naming_convention.md
rule "terraform_naming_convention" {
enabled = true
}
# Require Terraform Outputs to have descriptions
# https://github.com/terraform-linters/tflint/blob/master/docs/rules/terraform_documented_outputs.md
rule "terraform_documented_outputs" {
enabled = true
}
# Require Terraform Variables to have descriptions
# https://github.com/terraform-linters/tflint/blob/master/docs/rules/terraform_documented_variables.md
rule "terraform_documented_variables" {
enabled = true
}
# Require Terraform blocks to define required_version
# https://github.com/terraform-linters/tflint/blob/master/docs/rules/terraform_required_version.md
rule "terraform_required_version" {
enabled = true
}
# Require Terraform Variables to have types declared
# https://github.com/terraform-linters/tflint/blob/master/docs/rules/terraform_typed_variables.md
rule "terraform_typed_variables" {
enabled = true
}
# Install AWS plugin
# For more information about the ruleset:
# https://github.com/terraform-linters/tflint-ruleset-aws
plugin "aws" {
enabled = true
version = "0.13.2"
source = "github.com/terraform-linters/tflint-ruleset-aws"
}