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?
27 Replies
Rafael Roque
Rafael Roque14mo ago
please help me
tecmusti
tecmusti14mo ago
Maybe this will work { "Version": "2012-10-17", "Statement": [ { "Sid": "PublicReadWriteAccess", "Effect": "Allow", "Principal": "", "Action": [ "s3:GetObject", "s3:ListBucket" ], "Resource": [ "arn:aws:s3:::<bucket-name>", "arn:aws:s3:::<bucket-name>/public/" ] } ] }
Rafael Roque
Rafael Roque14mo ago
@tecmusti Bucket policy or Access Point policy ?
tecmusti
tecmusti14mo ago
@Rafael Roque Bucket Policy
Rafael Roque
Rafael Roque14mo ago
@tecmusti why did you get this error? Any suggestions? p.s: I'm using this endpoint http://s3-accesspoint.sa-east-1.amazonaws.com/
No description
Abdullah
Abdullah14mo ago
check your browser console logs, the issue will most likely be present there
tecmusti
tecmusti14mo ago
@Rafael Roque I really don't know, you should check logs.
Rafael Roque
Rafael Roque14mo ago
@tecmusti
No description
Rafael Roque
Rafael Roque14mo ago
No description
Rafael Roque
Rafael Roque14mo ago
HEAD, POST, DELETE
No description
Rafael Roque
Rafael Roque14mo ago
@tecmusti @Baptiste
No description
Rafael Roque
Rafael Roque14mo ago
please, give me suggestion
tecmusti
tecmusti14mo ago
Maybe s3 configuration (.env) is wrong
Baptiste
Baptiste14mo ago
Yes, provide your S3_... env values There must be something wrong here
Rafael Roque
Rafael Roque14mo ago
@Baptiste @tecmusti These are the environment variables for our S3, using Minio in a separate VM. Another detail is that I did the same test with AWS S3 and the same problem appears
No description
Rafael Roque
Rafael Roque14mo ago
No description
tecmusti
tecmusti14mo ago
@Rafael Roque S3_ENDPOINT should contain your region. s3.sa-east-1.amazonaws.com and S3_REGION should be sa-east-1 if your region is sa-east-1
Rafael Roque
Rafael Roque14mo ago
@tecmusti @Baptiste
No description
tecmusti
tecmusti14mo ago
us-east-1 or sa-east-1 ?
Edivaldo Victor
Edivaldo Victor14mo ago
sa-east-1
Edivaldo Victor
Edivaldo Victor14mo ago
No description
Rafael Roque
Rafael Roque14mo ago
@tecmusti please give me suggestion ?
tecmusti
tecmusti14mo ago
In your console region seems us-east-1 but your configuration sa-east-1
Rafael Roque
Rafael Roque14mo ago
@tecmusti thanks
tecmusti
tecmusti14mo ago
👍
Diego Eloy
Diego EloyOP14mo ago
@tecmusti @Baptiste It worked here. Thank you so much! 🙏

Did you find this page helpful?