File tree Expand file tree Collapse file tree 1 file changed +24
-15
lines changed
Expand file tree Collapse file tree 1 file changed +24
-15
lines changed Original file line number Diff line number Diff line change @@ -183,23 +183,32 @@ I, [2021-02-17T16:12:23.703677 #65335] INFO -- : S3AssetDeploy::Manager: Determ
183183```
184184
185185## AWS IAM Permissions
186- ` S3AsetDeploy ` requires the following AWS IAM permissions to list, put, and delete objects in your S3 Bucket:
186+ ` S3AssetDeploy ` requires the following AWS IAM permissions to list, put, and delete objects in your S3 Bucket:
187187
188188``` json
189- "Statement" : [
190- {
191- "Action" : [
192- " s3:ListBucket" ,
193- " s3:PutObject*" ,
194- " s3:DeleteObject"
195- ],
196- "Effect" : " Allow" ,
197- "Resource" : [
198- " arn:aws:s3:::#{YOUR_BUCKET}" ,
199- " arn:aws:s3:::#{YOUR_BUCKET}/*"
200- ]
201- }
202- ]
189+ {
190+ "Version" : " 2012-10-17" ,
191+ "Statement" : [
192+ {
193+ "Sid" : " AllowBucketOperations" ,
194+ "Effect" : " Allow" ,
195+ "Action" : [
196+ " s3:ListBucket"
197+ ],
198+ "Resource" : " arn:aws:s3:::#{YOUR_BUCKET}"
199+ },
200+ {
201+ "Sid" : " AllowObjectOperations" ,
202+ "Effect" : " Allow" ,
203+ "Action" : [
204+ " s3:GetObject" ,
205+ " s3:PutObject*" ,
206+ " s3:DeleteObject"
207+ ],
208+ "Resource" : " arn:aws:s3:::#{YOUR_BUCKET}/*"
209+ }
210+ ]
211+ }
203212```
204213
205214## Configuration with Cloudfront
You can’t perform that action at this time.
0 commit comments