So I’m trying to understand AWS S3.
Trying to send my images to my S3 database, where its more feasible to store lots of images than the standard Bubble storage.
a) am I correct that when you upload files to Bubble storage, its all public? I can’t see in any of the plugins the ability to select private, and I’m also able to view the images directly from a browser.
Is that the best practice?
I can understand the benefits of making it easier to work with, especially cross-platform.
b) so at the moment, a copy is being uploaded to bubble storage which is public, and another copy is being sent to my s3 which is private by default.
How do you guys deal with this situation usually?
I had always assumed Bubble storage was private by default (which with my newfound knowledge, I think I was wrong to assume so)
I need to GET the personal S3 URL, switch out the URL link, and allow bubble to GET images as required.
The best reference I can find is this thread, How to clone a file uploaded to Bubble S3 - #9 by james.puddicombe
But I think its referring to Bubble storage.
Whereas with private AWS storage, you have to deal with CORS or REST API with auth.
I hope this makes sense. Sorry I’m pretty new to all of this.