terraform-provider-google/r/storage_bucket_acl.html.markdown

1.4 KiB

layout page_title sidebar_current description
google Google: google_storage_bucket_acl docs-google-resource-storage-acl Creates a new bucket ACL in Google Cloud Storage.

google_storage_bucket_acl

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

Example Usage

Example creating an ACL on a bucket with one owner, and one reader.

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

resource "google_storage_bucket_acl" "image-store-acl" {
    bucket = "${google_storage_bucket.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.
  • predefined_acl - (Optional) The canned GCS ACL to apply. Must be set if both role_entity and default_acl are not.
  • default_acl - (Optional) The canned GCS ACL to apply to future buckets. Must be set both role_entity and predefined_acl are not.
  • role_entity - (Optional) List of role/entity pairs in the form ROLE:entity. See GCS Bucket ACL documentation for more details. Must be set if both predefined_acl and default_acl are not.