26 lines
543 B
JSON
26 lines
543 B
JSON
{
|
|
"Version": "2012-10-17",
|
|
"Statement": [
|
|
{
|
|
"Action": ["s3:ListBucket", "s3:GetBucketLocation"],
|
|
"Effect": "Allow",
|
|
"Resource": ["arn:aws:s3:::testcafe"]
|
|
},
|
|
{
|
|
"Action": ["s3:ListBucket", "s3:GetObject"],
|
|
"Effect": "Allow",
|
|
"Resource": ["arn:aws:s3:::testcafe/*"]
|
|
},
|
|
{
|
|
"Action": [
|
|
"s3:ListBucket",
|
|
"s3:GetObject",
|
|
"s3:PutObject",
|
|
"s3:DeleteObject"
|
|
],
|
|
"Effect": "Allow",
|
|
"Resource": ["arn:aws:s3:::testcafe/write/*"]
|
|
}
|
|
]
|
|
}
|