-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy path.tflint.hcl
More file actions
83 lines (65 loc) · 1.51 KB
/
.tflint.hcl
File metadata and controls
83 lines (65 loc) · 1.51 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
# TFLint configuration for terraform-aws-secrets-manager
config {
format = "compact"
call_module_type = "all"
}
plugin "terraform" {
enabled = true
preset = "recommended"
}
plugin "aws" {
enabled = true
version = "0.45.0"
source = "github.com/terraform-linters/tflint-ruleset-aws"
}
# Enable additional rules
rule "terraform_comment_syntax" {
enabled = true
}
rule "terraform_deprecated_index" {
enabled = true
}
rule "terraform_documented_outputs" {
enabled = true
}
rule "terraform_documented_variables" {
enabled = true
}
# Disabled for backward compatibility - existing resource names use kebab-case
rule "terraform_naming_convention" {
enabled = false
# format = "snake_case"
}
rule "terraform_required_version" {
enabled = true
}
rule "terraform_required_providers" {
enabled = true
}
rule "terraform_standard_module_structure" {
enabled = true
}
rule "terraform_typed_variables" {
enabled = true
}
rule "terraform_unused_declarations" {
enabled = true
}
rule "terraform_workspace_remote" {
enabled = true
}
# AWS-specific rules
rule "aws_secretsmanager_secret_invalid_policy" {
enabled = true
}
# Note: This rule was removed in newer versions of tflint-ruleset-aws
# rule "aws_secretsmanager_secret_version_secret_string_and_secret_binary" {
# enabled = true
# }
# Disable specific rules that may not be relevant
rule "terraform_module_pinned_source" {
enabled = false
}
rule "aws_resource_missing_tags" {
enabled = false # We allow resources without tags in some cases
}