generated from terraform-linters/tflint-ruleset-template
-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathprovider.go
55 lines (51 loc) · 1.97 KB
/
provider.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
package rules
import (
"github.com/terraform-linters/tflint-plugin-sdk/tflint"
"github.com/terraform-linters/tflint-ruleset-aws/rules/api"
"github.com/terraform-linters/tflint-ruleset-aws/rules/models"
)
var manualRules = []tflint.Rule{
NewAwsDBInstanceDefaultParameterGroupRule(),
NewAwsDBInstanceInvalidEngineRule(),
NewAwsDBInstanceInvalidTypeRule(),
NewAwsDBInstancePreviousTypeRule(),
NewAwsDynamoDBTableInvalidStreamViewTypeRule(),
NewAwsElastiCacheClusterDefaultParameterGroupRule(),
NewAwsElastiCacheClusterInvalidTypeRule(),
NewAwsElastiCacheClusterPreviousTypeRule(),
NewAwsIAMPolicyDocumentGovFriendlyArnsRule(),
NewAwsIAMPolicyGovFriendlyArnsRule(),
NewAwsIAMRolePolicyGovFriendlyArnsRule(),
NewAwsInstancePreviousTypeRule(),
NewAwsMqBrokerInvalidEngineTypeRule(),
NewAwsMqConfigurationInvalidEngineTypeRule(),
NewAwsResourceMissingTagsRule(),
NewAwsRouteNotSpecifiedTargetRule(),
NewAwsRouteSpecifiedMultipleTargetsRule(),
NewAwsS3BucketInvalidACLRule(),
NewAwsS3BucketNameRule(),
NewAwsSpotFleetRequestInvalidExcessCapacityTerminationPolicyRule(),
NewAwsAPIGatewayModelInvalidNameRule(),
NewAwsElastiCacheReplicationGroupDefaultParameterGroupRule(),
NewAwsElastiCacheReplicationGroupInvalidTypeRule(),
NewAwsElastiCacheReplicationGroupPreviousTypeRule(),
NewAwsIAMPolicyAttachmentExclusiveAttachmentRule(),
NewAwsIAMPolicySidInvalidCharactersRule(),
NewAwsIAMPolicyTooLongPolicyRule(),
NewAwsLambdaFunctionDeprecatedRuntimeRule(),
NewAwsIAMGroupPolicyTooLongRule(),
NewAwsAcmCertificateLifecycleRule(),
NewAwsElasticBeanstalkEnvironmentInvalidNameFormatRule(),
NewAwsSecurityGroupInvalidProtocolRule(),
NewAwsSecurityGroupRuleInvalidProtocolRule(),
NewAwsProviderMissingDefaultTagsRule(),
NewAwsSecurityGroupInlineRulesRule(),
NewAwsSecurityGroupRuleDeprecatedRule(),
}
// Rules is a list of all rules
var Rules []tflint.Rule
func init() {
Rules = append(Rules, manualRules...)
Rules = append(Rules, models.Rules...)
Rules = append(Rules, api.Rules...)
}