github.com/wata727/tflint@v0.12.2-0.20191013070026-96dd0d36f385/rules/awsrules/models/aws_route53_health_check_invalid_ip_address.go (about)

     1  // This file generated by `tools/model-rule-gen/main.go`. DO NOT EDIT
     2  
     3  package models
     4  
     5  import (
     6  	"log"
     7  	"regexp"
     8  
     9  	hcl "github.com/hashicorp/hcl/v2"
    10  	"github.com/wata727/tflint/tflint"
    11  )
    12  
    13  // AwsRoute53HealthCheckInvalidIPAddressRule checks the pattern is valid
    14  type AwsRoute53HealthCheckInvalidIPAddressRule struct {
    15  	resourceType  string
    16  	attributeName string
    17  	max           int
    18  	pattern       *regexp.Regexp
    19  }
    20  
    21  // NewAwsRoute53HealthCheckInvalidIPAddressRule returns new rule with default attributes
    22  func NewAwsRoute53HealthCheckInvalidIPAddressRule() *AwsRoute53HealthCheckInvalidIPAddressRule {
    23  	return &AwsRoute53HealthCheckInvalidIPAddressRule{
    24  		resourceType:  "aws_route53_health_check",
    25  		attributeName: "ip_address",
    26  		max:           45,
    27  		pattern:       regexp.MustCompile(`^(^((([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))$|^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$)$`),
    28  	}
    29  }
    30  
    31  // Name returns the rule name
    32  func (r *AwsRoute53HealthCheckInvalidIPAddressRule) Name() string {
    33  	return "aws_route53_health_check_invalid_ip_address"
    34  }
    35  
    36  // Enabled returns whether the rule is enabled by default
    37  func (r *AwsRoute53HealthCheckInvalidIPAddressRule) Enabled() bool {
    38  	return true
    39  }
    40  
    41  // Severity returns the rule severity
    42  func (r *AwsRoute53HealthCheckInvalidIPAddressRule) Severity() string {
    43  	return tflint.ERROR
    44  }
    45  
    46  // Link returns the rule reference link
    47  func (r *AwsRoute53HealthCheckInvalidIPAddressRule) Link() string {
    48  	return ""
    49  }
    50  
    51  // Check checks the pattern is valid
    52  func (r *AwsRoute53HealthCheckInvalidIPAddressRule) Check(runner *tflint.Runner) error {
    53  	log.Printf("[TRACE] Check `%s` rule for `%s` runner", r.Name(), runner.TFConfigPath())
    54  
    55  	return runner.WalkResourceAttributes(r.resourceType, r.attributeName, func(attribute *hcl.Attribute) error {
    56  		var val string
    57  		err := runner.EvaluateExpr(attribute.Expr, &val)
    58  
    59  		return runner.EnsureNoError(err, func() error {
    60  			if len(val) > r.max {
    61  				runner.EmitIssue(
    62  					r,
    63  					"ip_address must be 45 characters or less",
    64  					attribute.Expr.Range(),
    65  				)
    66  			}
    67  			if !r.pattern.MatchString(val) {
    68  				runner.EmitIssue(
    69  					r,
    70  					`ip_address does not match valid pattern ^(^((([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))$|^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$)$`,
    71  					attribute.Expr.Range(),
    72  				)
    73  			}
    74  			return nil
    75  		})
    76  	})
    77  }