-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Description
So Symphony is throwing up this error:
User Warning: GenericErrorHandler 512: S3::putObject(): [AccessDenied]
Access Denied on line 358 of file /Users/jdsimcoe/Sites/fire/extensions/s3upload_field/lib/S3.php
I have a user policy on my S3 bucket that allows uploading/deleting and have tested this in Transmit successfully.
Here is my policy:
{
"Statement":[
{
"Effect":"Allow",
"Action":[
"s3:ListAllMyBuckets"
],
"Resource":"arn:aws:s3:::*"
},
{
"Effect":"Allow",
"Action":[
"s3:ListBucket",
"s3:GetBucketLocation"
],
"Resource":"arn:aws:s3:::bucket-name"
},
{
"Effect":"Allow",
"Action":[
"s3:PutObject",
"s3:GetObject",
"s3:DeleteObject"
],
"Resource":"arn:aws:s3:::bucket-name/*"
}
]
}Any ideas?
Metadata
Metadata
Assignees
Labels
No labels