×

clouparduz_storage_object

Defines an object within a storage bucket.
 
Example Use
 
resource "clouparduz_storage_object" "txt1" {
 key = "txt1"
 source = "txt1.txt"
 access_key = clouparduz_storage_access_key.mykey.key_id
 secret_key = clouparduz_storage_access_key.mykey.key
 bucket = clouparduz_storage_bucket.mybucket.name
}
 
Attributes
•    key (Required): Unique key of the object.
•    bucket (Required): Associated bucket name.
•    source (Required): Source of the object data.
•    access_key (Optional): Access key for the object.
•    secret_key (Optional, Sensitive): Secret key (hidden).