Is there a way to change the permission of every single file in a S3 bucket using either aws-s3 gem or right_aws gem?

I can't find it in the documentation. Do I have to do each file individually?

I would like to grant "everyone" view permission.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I do not believe these gems are supposed to set permissions, that might be the reason you do not find this feature in the docs. Set your permissions in AWS console or through their API, amazon also has command line tools for setting S3 permissions.

The gem aws-s3 (and probably right_aws as well) is for reading and storing files in S3 from ruby. Setting permissions is a bit different discipline.

link|improve this answer
I could not figure this out. I ended up setting permisions manually using S3Hub, a s3 manager for the mac – deb Feb 12 '11 at 16:42
feedback

RightAws::S3::Grantee.new(key, "http://acs.amazonaws.com/groups/global/AllUsers", ["READ"], :apply, "AllUsers") works for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.