AWS Bucket Issues

Hi, guys. @Rafael Roqueand I are trying to connect typebot to the AWS S3 service, but we are unable to store the objects. Our bucket policies are:

{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "PublicReadWriteAccess",
"Effect": "Allow",
"Principal": "",
"Action": "s3:
",
"Resource": [
"arn:aws:s3:::<bucket-name>",
"arn:aws:s3:::<bucket-name>/"
]
}
]
}

And our CORS policies are:

[
{
"AllowedHeaders": [
"
"
],
"AllowedMethods": [
"PUT",
"POST"
],
"AllowedOrigins": [
"*"
],
"ExposeHeaders": [
"ETag"
],
"MaxAgeSeconds": 3000
}
]

The ACLs are disabled.

Does anyone know what could be preventing the access?
Was this page helpful?