Skip to content

Commit 8b0d3a9

Browse files
added IAM.md file
1 parent 360c945 commit 8b0d3a9

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

IAM.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
## IAM Permission
2+
3+
The Policy required to deploy this module:
4+
```hcl
5+
{
6+
"Version": "2012-10-17",
7+
"Statement": [
8+
{
9+
"Sid": "VisualEditor0",
10+
"Effect": "Allow",
11+
"Action": [
12+
"ec2:AuthorizeSecurityGroupEgress",
13+
"ec2:AuthorizeSecurityGroupIngress",
14+
"ec2:CreateSecurityGroup",
15+
"ec2:CreateTags",
16+
"ec2:DeleteSecurityGroup",
17+
"ec2:DeleteTags",
18+
"ec2:DescribeAccountAttributes",
19+
"ec2:DescribeAvailabilityZones",
20+
"ec2:DescribeNetworkInterfaces",
21+
"ec2:DescribeSecurityGroups",
22+
"ec2:RevokeSecurityGroupEgress",
23+
"ec2:RevokeSecurityGroupIngress"
24+
],
25+
"Resource": [
26+
"*"
27+
]
28+
},
29+
]
30+
}
31+
```

0 commit comments

Comments
 (0)