1
0
mirror of https://github.com/minio/docs.git synced 2025-09-14 20:09:30 +03:00
Files
docs/source/extra/examples/LifecycleManagementUser.json
ravindk89 5a5a8a6908 MinIO ILM Migration + Tiering
Apply suggestions from code review + local changes

Co-authored-by: Poorna Krishnamoorthy <poornas@users.noreply.github.com>
Co-authored-by: Krishnan Parthasarathi <krisis@users.noreply.github.com>

Apply suggestions from code review

Co-authored-by: Krishnan Parthasarathi <krisis@users.noreply.github.com>
2021-05-12 10:20:29 -04:00

27 lines
581 B
JSON

{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"s3:ListBucket"
],
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::MyDestinationBucket"
],
"Sid": ""
},
{
"Action": [
"s3:GetObject",
"s3:PutObject",
"s3:DeleteObject"
],
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::MyDestinationBucket/*"
],
"Sid": ""
}
]
}