generated from terraform-linters/tflint-ruleset-template
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathgoogle_compute_region_ssl_policy_invalid_profile.go
91 lines (77 loc) · 2.75 KB
/
google_compute_region_ssl_policy_invalid_profile.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
// ----------------------------------------------------------------------------
//
// *** AUTO GENERATED CODE *** Type: MMv1 ***
//
// ----------------------------------------------------------------------------
//
// This file is automatically generated by Magic Modules and manual
// changes will be clobbered when the file is regenerated.
//
// Please read more about how to change this file in
// .github/CONTRIBUTING.md.
//
// ----------------------------------------------------------------------------
package magicmodules
import (
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
"github.com/terraform-linters/tflint-plugin-sdk/hclext"
"github.com/terraform-linters/tflint-plugin-sdk/tflint"
)
// GoogleComputeRegionSslPolicyInvalidProfileRule checks the pattern is valid
type GoogleComputeRegionSslPolicyInvalidProfileRule struct {
tflint.DefaultRule
resourceType string
attributeName string
}
// NewGoogleComputeRegionSslPolicyInvalidProfileRule returns new rule with default attributes
func NewGoogleComputeRegionSslPolicyInvalidProfileRule() *GoogleComputeRegionSslPolicyInvalidProfileRule {
return &GoogleComputeRegionSslPolicyInvalidProfileRule{
resourceType: "google_compute_region_ssl_policy",
attributeName: "profile",
}
}
// Name returns the rule name
func (r *GoogleComputeRegionSslPolicyInvalidProfileRule) Name() string {
return "google_compute_region_ssl_policy_invalid_profile"
}
// Enabled returns whether the rule is enabled by default
func (r *GoogleComputeRegionSslPolicyInvalidProfileRule) Enabled() bool {
return true
}
// Severity returns the rule severity
func (r *GoogleComputeRegionSslPolicyInvalidProfileRule) Severity() tflint.Severity {
return tflint.ERROR
}
// Link returns the rule reference link
func (r *GoogleComputeRegionSslPolicyInvalidProfileRule) Link() string {
return ""
}
// Check checks the pattern is valid
func (r *GoogleComputeRegionSslPolicyInvalidProfileRule) 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 {
validateFunc := validation.StringInSlice([]string{"COMPATIBLE", "MODERN", "RESTRICTED", "CUSTOM", ""}, false)
_, errors := validateFunc(val, r.attributeName)
for _, err := range errors {
if err := runner.EmitIssue(r, err.Error(), attribute.Expr.Range()); err != nil {
return err
}
}
return nil
}, nil)
if err != nil {
return err
}
}
return nil
}