×

7.10.1. Сloupardkz_storage_object

 
Defines an object within a storage bucket.
 
Example Use
 resource "cloupardkz_storage_object" "txt1" {
 key = "txt1"
 source = "txt1.txt"
 access_key = cloupardkz_storage_access_key.mykey.key_id
 secret_key = cloupardkz_storage_access_key.mykey.key
 bucket = cloupardkz_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).