×

6.10.7. cloupard_storage_object

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