generated from terraform-linters/tflint-ruleset-template
-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathaws_security_group_inline_rules.go
67 lines (56 loc) · 1.78 KB
/
aws_security_group_inline_rules.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
package rules
import (
"fmt"
"github.com/terraform-linters/tflint-plugin-sdk/hclext"
"github.com/terraform-linters/tflint-plugin-sdk/tflint"
"github.com/terraform-linters/tflint-ruleset-aws/project"
)
// AwsSecurityGroupInlineRulesRule checks that egress and ingress blocks are not used in aws_security_group
type AwsSecurityGroupInlineRulesRule struct {
tflint.DefaultRule
resourceType string
}
// NewAwsSecurityGroupInlineRulesRule returns new rule with default attributes
func NewAwsSecurityGroupInlineRulesRule() *AwsSecurityGroupInlineRulesRule {
return &AwsSecurityGroupInlineRulesRule{
resourceType: "aws_security_group",
}
}
// Name returns the rule name
func (r *AwsSecurityGroupInlineRulesRule) Name() string {
return "aws_security_group_inline_rules"
}
// Enabled returns whether the rule is enabled by default
func (r *AwsSecurityGroupInlineRulesRule) Enabled() bool {
return false
}
// Severity returns the rule severity
func (r *AwsSecurityGroupInlineRulesRule) Severity() tflint.Severity {
return tflint.WARNING
}
// Link returns the rule reference link
func (r *AwsSecurityGroupInlineRulesRule) Link() string {
return project.ReferenceLink(r.Name())
}
// Check that no egress and ingress blocks are used in a aws_security_group
func (r *AwsSecurityGroupInlineRulesRule) Check(runner tflint.Runner) error {
resources, err := runner.GetResourceContent(r.resourceType, &hclext.BodySchema{
Blocks: []hclext.BlockSchema{
{Type: "egress"},
{Type: "ingress"},
},
}, nil)
if err != nil {
return err
}
for _, resource := range resources.Blocks {
for _, block := range resource.Body.Blocks {
runner.EmitIssue(
r,
fmt.Sprintf("Replace this %s block with aws_vpc_security_group_%s_rule.", block.Type, block.Type),
block.DefRange,
)
}
}
return nil
}