» google_storage_default_object_access_control

The DefaultObjectAccessControls resources represent the Access Control Lists (ACLs) applied to a new object within a Google Cloud Storage bucket when no ACL was provided for that object. ACLs let you specify who has access to your bucket contents and to what extent.

There are two roles that can be assigned to an entity:

READERs can get an object, though the acl property will not be revealed. OWNERs are READERs, and they can get the acl property, update an object, and call all objectAccessControls methods on the object. The owner of an object is always an OWNER. For more information, see Access Control, with the caveat that this API uses READER and OWNER instead of READ and FULL_CONTROL.

To get more information about DefaultObjectAccessControl, see:

» Example Usage - Storage Default Object Access Control Public

resource "google_storage_default_object_access_control" "public_rule" {
  bucket = "${google_storage_bucket.bucket.name}"
  role   = "READER"
  entity = "allUsers"
}

resource "google_storage_bucket" "bucket" {
    name = "static-content-bucket"
}

» Argument Reference

The following arguments are supported:

  • bucket - (Required) The name of the bucket.

  • entity - (Required) The entity holding the permission, in one of the following forms:

  • role - (Required) The access permission for the entity.


  • object - (Optional) The name of the object, if applied to an object.

» Attributes Reference

In addition to the arguments listed above, the following computed attributes are exported:

  • domain - The domain associated with the entity.

  • email - The email address associated with the entity.

  • entity_id - The ID for the entity

  • generation - The content generation of the object, if applied to an object.

  • project_team - The project team associated with the entity Structure is documented below.

The project_team block contains:

  • project_number - (Optional) The project team associated with the entity

  • team - (Optional) The team.

» Timeouts

This resource provides the following Timeouts configuration options:

  • create - Default is 4 minutes.
  • update - Default is 4 minutes.
  • delete - Default is 4 minutes.

» Import

DefaultObjectAccessControl can be imported using any of these accepted formats:

$ terraform import google_storage_default_object_access_control.default {{bucket}}/{{entity}}