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.
|
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.
| |||
|
feedback
|
|
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. | |||
feedback
|
|
RightAws::S3::Grantee.new(key, "http://acs.amazonaws.com/groups/global/AllUsers", ["READ"], :apply, "AllUsers") works for me. | |||
|
feedback
|