# Object Storage Provides an e2e object-store resource. This resource allows you to manage object-store bucket on your e2e my-account. When applied, a new object-store bucket is created. When destroyed, this object-store bucket is removed. ## Example Usage ```hcl resource "e2e_objectstore" "eos1"{ name= region=(default: "Delhi") project_id= } ``` ## Schema ### Required - `name` (String) The name of the bucket, also act as it's unique ID. - `project_id` (Number) The My-Account Project where the bucket will be created. - `region` (String) The Region the bucket will be created ### Optional - `enabling_versioning` (Boolean) Enable versioning for this bucket. ### Read-Only - `created_on` (String) Created Time of My-Account Bucket - `id` (String) The ID of this resource. - `lifecycle_configuration_status` (String) Is Lifecycle Rule Configured? - `status` (String) - `versioning_status` (String) Is Versioning enabled? ---