How to make your AWS S3 Bucket and Objects Public

preview_player
Показать описание
In this video, I show you how to make your S3 Bucket and Objects public so that anyone with the URL can download them.

📚 MY RECOMMENDED READING LIST FOR SOFTWARE DEVELOPERS📚

🎙 MY RECORDING EQUIPMENT 🎙

💻 MY DESKTOP EQUIPMENT 💻

📚 References:

☁Topics covered include:
S3 Permissions
S3 Bucket Policy
S3 Block all access
S3 URL
S3 Link

🌎 Find me here:

#AWS
#Serverless
#S3
Рекомендации по теме
Комментарии
Автор

{
"Version": "2008-10-17",
"Statement":[
{
"Sid":"AllowPublicRead",
"Effect":"Allow",
"Principal": {
"AWS":"*"
},
"Action":"s3:GetObject",
"Resource":"BUCKET_ARN/*"
}
]
}

AnteZivkovic
Автор

Thank You! I asked Chat GPT and it gave completely wrong instructions. Nice to see REAL people still rule ;-)

themediaguild
Автор

THANK YOU IT WORKED! I NEEDED YOUR CODE FOR MY FILES TO BE

RotterStudios
Автор

thanks. Still works like a charm, although the video is 3 years old!

engineerise
Автор

This is exactly what I needed, thank you!

legon
Автор

Exactly what I needed, thank you so much! Subscribed!

prudvi
Автор

thank you straight to the point super simple and well explained

techbuilddreams
Автор

A more updated version of the bucket policy he used:

{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "PublicRead",
"Effect": "Allow",
"Principal": "*",
"Action": [
"s3:GetObject",
"s3:GetObjectVersion"
],
"Resource": [

]
}
]
}

TorrinLeonard
Автор

Perfectly worked for me! Thanks a lot!

abhiruproy
Автор

Thank you very much, this worked perfectly and now my problem is solved!

DanielMelgarejo
Автор

thank you! i got an error for the code but I saved anyway and it worked

CometLeads
Автор

very nice thsi is the method what i looking for cpa, thanks

jaimenava
Автор

Is there anything else that could be causing the issue? I have found that even when I edit the bucket policy, I get that exact same error.

althacker
Автор

Thanks man. Worked perfectly! take love

majedabdullah
Автор

sólo requiero darle acceso a un usuario y que no muestre los demás buckets, alguién tiene la configuración?. Gracias

gersitandazoramirez
Автор

where does one acquire appropriate code to insert at the end of the process?

dsmtechgroup
Автор

How about leaving the policy here for us to paste

TrialTappersMentalHealthTips
Автор

this is what I see after pasting your thing + my bucketname:
Unknown Error
An unexpected error occurred.
API response
Policies must be valid JSON and the first byte must be '{'

BartHeartMarketing
Автор

very cool, how did you get the SID, this was basically what the policy generator gave me but an incorrect SID value

scottstewart
Автор

I did like your show in this video, but my bucket policies said "Access deny".. So how can i fix it?

penrudeesinabsorn