google_storage_bucket_object
Creates a new object inside an exisiting bucket in Google cloud storage service (GCS). Currently, it does not support creating custom ACLs. For more information see the official documentation and API.
Example Usage
Example creating a public object in an existing image-store
bucket.
resource "google_storage_bucket_object" "picture" {
name = "butterfly01"
source = "/images/nature/garden-tiger-moth.jpg"
bucket = "image-store"
}
Argument Reference
The following arguments are supported:
-
bucket
- (Required) The name of the containing bucket. -
name
- (Required) The name of the object.
-
content
- (Optional) Data asstring
to be uploaded. Must be defined ifsource
is not. -
predefined_acl
- (Optional, Deprecated) The canned GCS ACL apply. Please switch togoogle_storage_object_acl.predefined_acl
. -
source
- (Optional) A path to the data you want to upload. Must be defined ifcontent
is not.
Attributes Reference
In addition to the arguments listed above, the following computed attributes are exported:
-
crc32c
- (Computed) Base 64 CRC32 hash of the uploaded data. -
md5hash
- (Computed) Base 64 MD5 hash of the uploaded data.
See the source of this document at Terraform.io