-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tflint.hcl
68 lines (53 loc) · 1.5 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 Config
# Docs => https://github.com/terraform-linters/tflint/blob/master/docs
config {
plugin_dir = "~/.tflint.d/plugins"
module = true
}
#---------------------------------------------------------------------
### TFLint Plugins
plugin "aws" {
enabled = true
version = "0.17.1"
source = "github.com/terraform-linters/tflint-ruleset-aws"
}
#---------------------------------------------------------------------
### TFLint Rules
# Require comments be started with "#", not "//"
rule "terraform_comment_syntax" {
enabled = true
}
# Disallow legacy dot index syntax
rule "terraform_deprecated_index" {
enabled = true
}
# Require output descriptions
rule "terraform_documented_outputs" {
enabled = true
}
# Require variable descriptions
rule "terraform_documented_variables" {
enabled = true
}
# Disallow terraform declarations without required_version
rule "terraform_required_version" {
enabled = true
}
# Require that all providers have version constraints
rule "terraform_required_providers" {
enabled = true
}
# Disallow variables that don't specify a "type"
rule "terraform_typed_variables" {
enabled = true
}
# Disallow vars that are declared but never used
rule "terraform_unused_declarations" {
enabled = true
}
# Disallow required_providers that are declared but never used
rule "terraform_unused_required_providers" {
enabled = true
}
######################################################################