@strapi/provider-upload-aws-s3 4.0.0-next.0 → 4.0.0-next.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +14 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -28,6 +28,20 @@ module.exports = ({ env }) => ({
28
28
  });
29
29
  ```
30
30
 
31
+ ## Required AWS Policy Actions
32
+
33
+ These are the minimum amount of permissions needed for this provider to work.
34
+
35
+ ```
36
+ "Action": [
37
+ "s3:PutObject",
38
+ "s3:GetObject",
39
+ "s3:ListBucket",
40
+ "s3:DeleteObject",
41
+ "s3:PutObjectAcl"
42
+ ],
43
+ ```
44
+
31
45
  ## Resources
32
46
 
33
47
  - [License](LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strapi/provider-upload-aws-s3",
3
- "version": "4.0.0-next.0",
3
+ "version": "4.0.0-next.12",
4
4
  "description": "AWS S3 provider for strapi upload",
5
5
  "homepage": "https://strapi.io",
6
6
  "keywords": [
@@ -47,5 +47,5 @@
47
47
  "scripts": {
48
48
  "test": "echo \"no tests yet\""
49
49
  },
50
- "gitHead": "231263a3535658bab1e9492c6aaaed8692d62a53"
50
+ "gitHead": "67af23d827fd48e7782e509a78d0ba66e67e2215"
51
51
  }