2 Answers
- Newest
- Most votes
- Most comments
2
If you know the error message, could you share it with us?
I guess that you have S3 ACLs enabled.
If S3 ACLs are enabled, s3:PutObjectAcl is required.
0
Check if you are not using custom KMS key, also error message would be helpful. You can also try with this policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::uploads/images/*",
"arn:aws:s3:::uploads"
]
}
]
}
answered 2 years ago
Relevant content
asked 4 years ago
asked 2 years ago
- AWS OFFICIALUpdated 8 months ago
