terraform-provider-google/r/storage_object_acl.html.markdown
George Christou 06fa75423e website/docs: Run terraform fmt on code examples (#12075)
* docs/vsphere: Fix code block

* docs: Convert `...` to `# ...` to allow `terraform fmt`ing

* docs: Trim trailing whitespace

* docs: First-pass run of `terraform fmt` on code examples
2017-02-19 00:48:50 +02:00

1.5 KiB

layout page_title sidebar_current description
google Google: google_storage_object_acl docs-google-storage-object-acl Creates a new object ACL in Google Cloud Storage.

google_storage_object_acl

Creates a new object ACL in Google cloud storage service (GCS)

Example Usage

Create an object ACL with one owner and one reader.

resource "google_storage_bucket" "image-store" {
  name     = "image-store-bucket"
  location = "EU"
}

resource "google_storage_bucket_object" "image" {
  name   = "image1"
  bucket = "${google_storage_bucket.name}"
  source = "image1.jpg"
}

resource "google_storage_object_acl" "image-store-acl" {
  bucket = "${google_storage_bucket.image_store.name}"
  object = "${google_storage_bucket_object.image_store.name}"

  role_entity = [
    "OWNER:user-my.email@gmail.com",
    "READER:group-mygroup",
  ]
}

Argument Reference

  • bucket - (Required) The name of the bucket it applies to.

  • object - (Required) The name of the object it applies to.


  • predefined_acl - (Optional) The canned GCS ACL to apply. Must be set if role_entity is not.

  • role_entity - (Optional) List of role/entity pairs in the form ROLE:entity. See GCS Object ACL documentation for more details. Must be set if predefined_acl is not.

Attributes Reference

Only the arguments listed above are exposed as attributes.