-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.tflint.hcl
More file actions
118 lines (91 loc) · 2.05 KB
/
Copy path.tflint.hcl
File metadata and controls
118 lines (91 loc) · 2.05 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# TFLint configuration for Terraform
# Documentation: https://github.com/terraform-linters/tflint
config {
# Module inspection is enabled by default for terraform plugin
call_module_type = "local"
# Force the provider source to be set
force = false
# Disable recursive module inspection (can be slow)
# disabled_by_default = false
}
# AWS plugin (if using AWS)
plugin "aws" {
enabled = false # Set to false to avoid credential issues when not using AWS
version = "0.36.0"
source = "github.com/terraform-linters/tflint-ruleset-aws"
# Deep checking enabled (slower but more thorough)
deep_check = true
}
# Terraform plugin (base rules)
plugin "terraform" {
enabled = true
version = "0.10.0"
source = "github.com/terraform-linters/tflint-ruleset-terraform"
preset = "recommended"
}
# Proxmox plugin (if using Proxmox provider)
# plugin "proxmox" {
# enabled = true
# version = "0.1.0"
# source = "github.com/terraform-linters/tflint-ruleset-proxmox"
# }
# Rules configuration
rule "terraform_deprecated_interpolation" {
enabled = true
}
rule "terraform_deprecated_index" {
enabled = true
}
rule "terraform_unused_declarations" {
enabled = true
}
rule "terraform_comment_syntax" {
enabled = true
}
rule "terraform_documented_outputs" {
enabled = true
}
rule "terraform_documented_variables" {
enabled = true
}
rule "terraform_typed_variables" {
enabled = true
}
rule "terraform_module_pinned_source" {
enabled = true
style = "semver" # or "flexible"
}
rule "terraform_naming_convention" {
enabled = true
# Naming convention formats
variable {
format = "snake_case"
}
locals {
format = "snake_case"
}
output {
format = "snake_case"
}
resource {
format = "snake_case"
}
module {
format = "snake_case"
}
data {
format = "snake_case"
}
}
rule "terraform_required_version" {
enabled = true
}
rule "terraform_required_providers" {
enabled = true
}
rule "terraform_standard_module_structure" {
enabled = true
}
rule "terraform_workspace_remote" {
enabled = true
}