Skip to main content
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.

Example usage

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

Schema

Required

  • name (String) The bucket name. Must be globally unique and must not begin with cw- or vip-.
  • 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:
terraform import coreweave_object_storage_bucket.default {{name}}
import {
  to = coreweave_object_storage_bucket.default
  id = "{{name}}"
}
Last modified on June 29, 2026