generated from terraform-linters/tflint-ruleset-template
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathaws_iam_policy_gov_friendly_arns_test.go
124 lines (117 loc) · 2.45 KB
/
aws_iam_policy_gov_friendly_arns_test.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
package rules
import (
"testing"
hcl "github.com/hashicorp/hcl/v2"
"github.com/terraform-linters/tflint-plugin-sdk/helper"
)
func Test_AwsIamPolicyGovFriendlyArns(t *testing.T) {
cases := []struct {
Name string
Content string
Config string
Expected helper.Issues
}{
{
Name: "Wanted arn: arn:aws-us-gov, found arn: arn:aws",
Content: `
resource "aws_iam_policy" "policy" {
name = "test_policy"
path = "/"
description = "My test policy"
policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"ec2:Describe*"
],
"Effect": "Allow",
"Resource": "arn:aws:s3:::<bucketname>/*""
}
]
}
EOF
}`,
Config: `
rule "aws_iam_policy_gov_friendly_arns" {
enabled = true
}`,
Expected: helper.Issues{
{
Rule: NewAwsIAMPolicyGovFriendlyArnsRule(),
Message: "ARN detected in IAM policy that could potentially fail in AWS GovCloud due to resource pattern: arn:aws:.*",
Range: hcl.Range{
Filename: "module.tf",
Start: hcl.Pos{Line: 6, Column: 12},
End: hcl.Pos{Line: 19, Column: 4},
},
},
},
},
{
Name: "Wanted arn: arn:aws-us-gov, found arn: arn:aws-us-gov",
Content: `
resource "aws_iam_policy" "policy" {
name = "test_policy"
path = "/"
description = "My test policy"
policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"ec2:Describe*"
],
"Effect": "Allow",
"Resource": "arn:aws-us-gov:s3:::<bucketname>/*""
}
]
}
EOF
}`,
Config: `
rule "aws_iam_policy_gov_friendly_arns" {
enabled = true
}`,
Expected: helper.Issues{},
},
{
Name: "Wanted arn *, found: arn *",
Content: `
resource "aws_iam_policy" "policy" {
name = "test_policy"
path = "/"
description = "My test policy"
policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"ec2:Describe*"
],
"Effect": "Allow",
"Resource": "*"
}
]
}
EOF
}`,
Config: `
rule "aws_iam_policy_gov_friendly_arns" {
enabled = true
}`,
Expected: helper.Issues{},
},
}
rule := NewAwsIAMPolicyGovFriendlyArnsRule()
for _, tc := range cases {
runner := helper.TestRunner(t, map[string]string{"module.tf": tc.Content, ".tflint.hcl": tc.Config})
if err := rule.Check(runner); err != nil {
t.Fatalf("Unexpected error occurred: %s", err)
}
helper.AssertIssues(t, tc.Expected, runner.Issues)
}
}