Access control lists (ACLs) (original) (raw)

Usage

This page provides an overview of access control lists (ACLs), which let you control access to individual buckets or objects. To learn about other ways of controlling access to buckets and objects, readOverview of Access Control.

Should you use access control lists?

In most cases, you should avoid using ACLs, and you shouldenable uniform bucket-level access for your buckets, which prevents ACL usage:

You most likely want to use ACLs in the following cases:

What is an access control list?

An access control list (ACL) is a mechanism you can use to define who has access to your buckets and objects, as well as what level of access they have. In Cloud Storage, you apply ACLs to individual buckets and objects. Each ACL consists of one or more entries. An entry gives a specific user (or group) the ability to perform specific actions. Each entry consists of two pieces of information:

As an example, suppose you have a bucket that you want anyone to be able to access objects from, but you also want your collaborator to be able to add or remove objects from the bucket. In this case, your ACL would consist of two entries:

The maximum number of ACL entries you can create for a bucket or object is 100. When the entry scope is a group or domain, it counts as one ACL entry regardless of how many users are in the group or domain.

When a user requests access to a bucket or object, the Cloud Storage system reads the bucket or object ACL and determines whether to allow or reject the access request. If the ACL grants the user permission for the requested operation, the request is allowed. If the ACL does not grant the user permission for the requested operation, the request fails and a 403 Forbidden error is returned.

Note that while ACLs can be used to manage most actions involving buckets and objects, the ability to create a bucket comes from having the appropriateproject permission.

Permissions

Permissions describe what can be done to a given object or bucket.

Cloud Storage lets you assign the following concentricpermissions for your buckets and objects, as shown in the following table:

| | Buckets | Objects | | | ---------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | READER | Allows a user to list a bucket's contents. Also allows a user to read bucket metadata, excluding ACLs. | Allows a user to download an object's data. | | WRITER | Gives a user all access that's granted by the READER permission. Additionally allows a user to create, replace, and delete objects in a bucket, including creating objects using multipart uploads. | N/A. You cannot apply this permission to objects. | | OWNER | Gives a user all access that's granted by the WRITER permission. Also allows a user to read and write bucket metadata, including ACLs, and to work with tags on the bucket. | Gives a user all access that's granted by the READER permission. Also allows a user to read and write object metadata, including ACLs. | | Default | Buckets have the predefinedproject-private ACL applied when they are created. Buckets are always owned by theproject-owners group. | Objects have the predefinedproject-private ACL applied when they are uploaded. Objects are always owned by the original requester who uploaded the object. |

In this page, we generally refer to the permissions as READER, WRITER, and OWNER, which are how they are specified in the JSON API and theGoogle Cloud console. If you are using the XML API, the equivalent permissions are READ, WRITE, and FULL_CONTROL, respectively.

Scopes

Scopes specify who it is that has a given permission.

An ACL consists of one or more entries, where each entry grants permissions to a scope. You can specify an ACL scope using any of the following entities:

Scope ("grantee") Entity Type(s) Example
Special identifier for all entities User allUsers
Special identifier for all valid accounts User allAuthenticatedUsers
User account email address User jeffersonloveshiking@gmail.com
Service account email address User my-service-account@my-project.iam.gserviceaccount.com
Google group email address Group work-group@googlegroups.com
Convenience values for projects Project owners-123456789012
Google Workspace domain Domain dana@example.com
Cloud Identity domain Domain dana@example.com

Concentric permissions and scopes

When specifying ACLs in Cloud Storage, you do not need to list multiple scopes to grant multiple permissions. Cloud Storage uses concentric permissions, so when you grant WRITER permission, you also grant READERpermission, and if you grant OWNER permission, you also grant READER andWRITER permission.

When specifying an ACL, most tools allow you to specify multiple scopes for the same entry. The most permissive permission is the access granted to the scope. For example, if you provide two entries for a user, one with READER permission and one with WRITER permission on a bucket, the user will have WRITER permission on the bucket.

In the XML API, it is not possible to provide two ACL entries with the same scope. For example, granting a user READ permission and WRITE permission on a bucket results in an error. Instead, grant the user WRITE permission, which also grants the user READ permission.

ACLs and IAM

Identity and Access Management (IAM) and ACLs work in tandem to grant access to your buckets and objects, which means a user only needs the relevant permission from either of these systems in order to access a bucket or object. In general, permissions granted by IAM policies don't appear in ACLs, and permissions granted by ACLs don't appear in IAM policies. See IAM relation to ACLs for more information.

Behavior with IAM deny

An IAM deny policy overrides any applicable access that would otherwise be granted by an ACL you've set, when the deny policy and the ACL target the same permission.

For example, if a bucket has a deny policy that prevents a user from having the storage.objects.get permission, and you create an ACL that grants the user the READER role on an object within the bucket, the user won't be able to view the object in the bucket. However, if the deny policy specifies the storage.buckets.get permission and the ACL grants theWRITER role on the bucket, the user won't be able to retrieve the bucket's metadata, but can still list, create, and delete objects in the bucket.

Predefined ACLs

A predefined ACL, also sometimes known as a canned ACL, is an alias for a set of specific ACL entries that you can use to quickly apply many ACL entries at once to a bucket or object.

The table below lists predefined ACLs and shows which ACL entries are applied for each predefined ACL. When using the table below, note that:

* By default, publicly readable objects are served with a Cache-Controlheader that allows the objects to be cached for 3600 seconds. If you need to ensure that updates become visible immediately, you shouldset the Cache-Control metadata for the objects toCache-Control:private, max-age=0, no-transform.

Default ACLs

When buckets are created or objects are uploaded, if you do not explicitly assign an ACL to them, they are given the default ACL. You can change the default ACL given to an object; the process to do so is described inChanging default object ACLs. Note that when you change the default ACL, the ACLs of objects that already exist in the bucket or buckets that already exist in the project remain unchanged.

Default bucket ACLs

All buckets are owned by the project owners group. Additionally, project owners are granted OWNER permission for any buckets inside their project that use apredefined ACL.

If you create a bucket with the default bucket ACL—that is, you do not specify a predefined ACL when you create the bucket—your bucket has the predefined projectPrivate ACL applied to it.

Default object ACLs

By default, anyone who has OWNER permission or WRITER permission on a bucket can upload objects into that bucket. When you upload an object, you can provide a predefined ACL or not specify an ACL at all. If you don't specify an ACL, Cloud Storage applies the bucket's default object ACL to the object. Every bucket has a default object ACL, and this ACL is applied to all objects uploaded to that bucket without a predefined ACL or an ACL specified in the request (JSON API only). The initial value for the default object ACL of every bucket is projectPrivate.

Based on how objects are uploaded, object ACLs are applied accordingly:

ACL behavior

Cloud Storage helps you adhere to best practices by enforcing some ACL modification rules, which prevent you from setting ACLs that make data inaccessible:

You cannot apply ACLs that change the ownership of a bucket or object (which should not be confused with the OWNER permission). Once created in Cloud Storage, bucket and object ownership are permanent. You can, however, effectively change the ownership of objects (but not buckets) by replacing them. Replacement is basically a delete operation followed immediately by an upload operation. During an upload operation, the person who is performing the upload becomes the owner of the object. Keep in mind that to replace an object, the person performing the replacement (and gaining ownership of the object by doing so) must have WRITER or OWNER permission on the bucket in which the object is being uploaded.

What's next