> ## Documentation Index
> Fetch the complete documentation index at: https://docs.coreweave.com/llms.txt
> Use this file to discover all available pages before exploring further.

# coreweave_object_storage_bucket (Resource)

> Terraform resource for creating CoreWeave Object Storage buckets with availability zone and tag configuration

Buckets are the primary organizational containers for your data in CoreWeave AI Object Storage. Bucket names must be globally-unique and not begin with `cw-` or `vip-`, which are reserved for internal use. Learn more about [creating buckets](/products/storage/object-storage/buckets/create-bucket).

## Example usage

```terraform theme={"system"}
resource "coreweave_object_storage_bucket" "default" {
  name = "my-tf-test-bucket"
  zone = "US-EAST-04A"
  tags = {
    foo = "bar"
  }
}
```

## Schema

### Required

* `name` (String) The name of the bucket, must be unique
* `zone` (String) The Availability Zone in which the bucket is located.

### Optional

* `tags` (Map of String) Map of tags to assign to the bucket.

## Import

Import is supported using the following syntax:

```bash theme={"system"}
terraform import coreweave_object_storage_bucket.default {{name}}
```
