generated from terraform-linters/tflint-ruleset-template
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathaws_s3_bucket_invalid_acl.go
94 lines (81 loc) · 2.04 KB
/
aws_s3_bucket_invalid_acl.go
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
package rules
import (
"fmt"
"github.com/terraform-linters/tflint-plugin-sdk/hclext"
"github.com/terraform-linters/tflint-plugin-sdk/tflint"
)
// AwsS3BucketInvalidACLRule checks the pattern is valid
type AwsS3BucketInvalidACLRule struct {
tflint.DefaultRule
resourceType string
attributeName string
enum []string
}
// NewAwsS3BucketInvalidACLRule returns new rule with default attributes
func NewAwsS3BucketInvalidACLRule() *AwsS3BucketInvalidACLRule {
return &AwsS3BucketInvalidACLRule{
resourceType: "aws_s3_bucket",
attributeName: "acl",
enum: []string{
"private",
"public-read",
"public-read-write",
"aws-exec-read",
"authenticated-read",
"log-delivery-write",
"bucket-owner-read",
"bucket-owner-full-control",
},
}
}
// Name returns the rule name
func (r *AwsS3BucketInvalidACLRule) Name() string {
return "aws_s3_bucket_invalid_acl"
}
// Enabled returns whether the rule is enabled by default
func (r *AwsS3BucketInvalidACLRule) Enabled() bool {
return true
}
// Severity returns the rule severity
func (r *AwsS3BucketInvalidACLRule) Severity() tflint.Severity {
return tflint.ERROR
}
// Link returns the rule reference link
func (r *AwsS3BucketInvalidACLRule) Link() string {
return ""
}
// Check checks the pattern is valid
func (r *AwsS3BucketInvalidACLRule) Check(runner tflint.Runner) error {
resources, err := runner.GetResourceContent(r.resourceType, &hclext.BodySchema{
Attributes: []hclext.AttributeSchema{{Name: r.attributeName}},
}, nil)
if err != nil {
return err
}
for _, resource := range resources.Blocks {
attribute, exists := resource.Body.Attributes[r.attributeName]
if !exists {
continue
}
err := runner.EvaluateExpr(attribute.Expr, func(val string) error {
found := false
for _, item := range r.enum {
if item == val {
found = true
}
}
if !found {
runner.EmitIssue(
r,
fmt.Sprintf(`"%s" is an invalid value as acl`, val),
attribute.Expr.Range(),
)
}
return nil
}, nil)
if err != nil {
return err
}
}
return nil
}