×

Сlouparduz_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.
 
1. key (Required): Unique key of the object.
2. bucket (Required): Associated bucket name.
3. source (Required): Source of the object data.
4. access_key (Optional): Access key for the object.
5. secret_key (Optional, Sensitive): Secret key (hidden).