0
votes

I have tried to create "vendor dropbox" , using the instructions in Google cloud storage documntation the folloing set of commands were executed :

creating the bucket

gsutil  mb gs://customer-10    

adding external user permissions

gsutil chacl  -u [email protected]:FC gs://customer-10

adding default acl

gsutil chdefacl  -u -u [email protected]:FC gs://customer-10

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

     <Entry>
    <Scope type="UserByEmail">
        <EmailAddress>[email protected]</EmailAddress>
        <Name>firstname lastname</Name>
    </Scope>
    <Permission>FULL_CONTROL</Permission>
</Entry>

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

it is not possible to upload any file into this bucket .

What is missing in my scenario ? please help

1

1 Answers

1
votes

This issue was solved in gsutil version 3.37. Currently it is working as documented .