您好我想更改我的 ACL 文件以允许 Google Compute Engine 写入我的存储桶
这是我的 ACL 的样子:
<?xml version="1.0" ?>
<AccessControlList>
<Owner>
<ID>XX</ID>
</Owner>
<Entries>
<Entry>
<Scope type="GroupById">
<ID>XX</ID>
</Scope>
<Permission>FULL_CONTROL</Permission>
</Entry>
<Entry>
<Scope type="AllUsers"/>
<Permission>READ</Permission>
</Entry>
<Entry>
<Scope type="UserByEmail">
<EmailAddress>XX@appspot.gserviceaccount.com</EmailAddress>
</Scope>
<Permission>WRITE</Permission>
</Entry>
</Entries>
</AccessControlList>
或者我不知道有没有其他方法可以做到这一点?