Open choldgraf opened 2 years ago
I just want to flag that while this has the effect of "just" adding the delete permission, what it looks like in practice in the GCP console is giving the service account the admin role. There is no specific delete
role, you just have to grant them the admin role.
Ref: https://cloud.google.com/storage/docs/access-control/iam-roles |
In light of this, I think we should do one of two things:
read/write
permissions to the scratch bucket, but privileged permissions (including delete
) will not be unreasonably withheld upon request with a valid use case.My internal ❤️ is screaming for option 2 😜 given that admin privileges seem, maybe, too much power? 🤔
If admins privileges come with extra permissions, then I agree with @damianavila . Can we document a list of those extra permissions? We'll need to share this with community reps to help them make this decision anyway
I would love to create a little Markdown table of what the differences between Creator+Viewer and just Admin are, but I feel I have a lot on my plate right now in terms of big picture reasoning about things. Very happy for someone else who has some extra brain cycles to take on that work.
I think it would involve expanding the wildcard at the end of storage.objects
and storage.multipartUploads
and seeing if there's anything destructive that is included in Admin but not Creator+Viewer.
While I also agree that it would be good to have something more easier to parse than those docs to present to community reps, we also need to be careful that it doesn't get scale with Google's docs too quickly.
Background and proposal
Background We use scratch buckets as temporary places to store cloud data to facilitate various data operations with intermediate representations. These buckets are generally cleared after a few days, since they're not meant for long-term storage.
Currently, users have the ability to read and write to the scratch bucket. However, they don't have the permission to delete from the scratch bucket.
Proposed solution Our default should be to give users read, write, and delete access. We should document that there are some risks associated with this, and if a community representative wants to restrict delete access, they can request it to happen.
Implementation guide and constraints
Here's some sample language for a policy / guidelines to use for our current practices, including the suggestion that we give delete privileges to users by default.
Updates and ongoing work
No response