s3backer icon indicating copy to clipboard operation
s3backer copied to clipboard

Improve README with a minimal S3 policy

Open solracsf opened this issue 2 years ago • 5 comments

The Minimal Policy would recommend the minimal rights needed for the application to run. Ex.:

GetObject
PutObject
DeleteObject

or a JSON:

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

solracsf avatar Jan 30 '22 15:01 solracsf