acl - google storage bucket upload permissions -


i have tried create "vendor dropbox" , using instructions in google cloud storage documntation folloing set of commands executed :

creating bucket

gsutil  mb gs://customer-10     

adding external user permissions

gsutil chacl  -u user@company.com:fc gs://customer-10 

adding default acl

gsutil chdefacl  -u -u user@company.com:fc gs://customer-10 

verify acl modifications , using command gsutil getacl gs://customer-10 (verified succesfuly )

     <entry>     <scope type="userbyemail">         <emailaddress>user@company.com</emailaddress>         <name>firstname lastname</name>     </scope>     <permission>full_control</permission> </entry> 

but when user accessing bucket , using link https://storage.cloud.google.com/?arg=customer-10&pli=1#customer-10

it not possible upload file bucket .

what missing in scenario ? please

this issue solved in gsutil version 3.37. working documented .


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -