Skip to content

Commit

Permalink
Update AWS S3 Provider (#10602)
Browse files Browse the repository at this point in the history
Gives more information about what actions are needed for this provider to work without using s3:*
  • Loading branch information
cpaczek committed Aug 4, 2021
1 parent ae66859 commit 90044c6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packages/strapi-provider-upload-aws-s3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,18 @@ module.exports = ({ env }) => ({
});
```

## Required AWS Policy Actions
These are the minimum amount of permissions needed for this provider to work.
```
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:ListBucket",
"s3:DeleteObject",
"s3:PutObjectAcl"
],
```

## Resources

- [License](LICENSE)
Expand Down

0 comments on commit 90044c6

Please sign in to comment.