forked from aws-samples/eb-locustio-sample
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpolicy.json
37 lines (37 loc) · 988 Bytes
/
policy.json
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
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "DynamoDBPermissions",
"Effect": "Allow",
"Action": [
"dynamodb:GetItem",
"dynamodb:UpdateItem"
],
"Resource": [
"arn:aws:dynamodb:*:*:table/*-stack-MasterIPTable*"
]
},
{
"Sid": "ElasticBeanstalkPermissions",
"Effect": "Allow",
"Action": [
"autoscaling:DescribeAutoScalingGroups",
"cloudformation:ListStackResources",
"elasticbeanstalk:DescribeEnvironmentResources"
],
"Resource": [
"*"
]
},
{
"Effect": "Allow",
"Action": [
"secretsmanager:Get*"
],
"Resource": [
"arn:aws:secretsmanager:*:*:secret:$DSS_SECRETS_STORE/*"
]
}
]
}