forked from VoyagerInnovations/secgroup_approval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLambdaRoleSecurityGroup
61 lines (61 loc) · 1.19 KB
/
LambdaRoleSecurityGroup
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
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ec2:DescribeSecurityGroups",
"ec2:AuthorizeSecurityGroupEgress",
"ec2:AuthorizeSecurityGroupIngress",
"ec2:RevokeSecurityGroupEgress",
"ec2:RevokeSecurityGroupIngress"
],
"Resource": [
"*"
]
},
{
"Effect": "Allow",
"Action": [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents"
],
"Resource": [
"*"
]
},
{
"Effect": "Allow",
"Action": [
"dynamodb:DescribeStream",
"dynamodb:GetRecords",
"dynamodb:GetShardIterator",
"dynamodb:ListStreams"
],
"Resource": "arn:aws:dynamodb:*:*:table/securityGroupRequests/stream/*"
},
{
"Effect": "Allow",
"Action": [
"dynamodb:PutItem",
"dynamodb:GetItem",
"dynamodb:UpdateItem",
"dynamodb:Scan"
],
"Resource": "arn:aws:dynamodb:*:*:table/securityGroupRequests"
},
{
"Effect": "Allow",
"Action": [
"sns:*"
],
"Resource": [
"arn:aws:sns:*:*:applySecurityGroupChange",
"arn:aws:sns:*:*:securityGroupChange",
"arn:aws:sns:*:*:denySecurityGroupChange",
"arn:aws:sns:*:*:errorHandlerSecurityGroupChange"
]
}
]
}