AWS S3 Some Backet Full Permission and read Write
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:GetBucketLocation",
"s3:ListAllMyBuckets"
],
"Resource": "arn:aws:s3:::*"
},
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::my-data-s3",
"arn:aws:s3:::my-data-s3-1",
"arn:aws:s3:::my-data-s3-2",
"arn:aws:s3:::my-data-s3-2/*",
"arn:aws:s3:::my-data-s3-3",
"arn:aws:s3:::my-data-s3-3/*"
]
}
]
}
Comments
Post a Comment