Vultr DocsLatest Content


vultr_object_storage_tier

Updated on 15 September, 2025

Represents a storage tier option for Vultr Object Storage with specific performance and pricing characteristics


Get information about Object Storage tiers on Vultr.

Example Usage

Get the information for an object storage tier by slug:

hcl
data "vultr_object_storage_tier" "obs-tier" {
  filter {
    name   = "slug"
    values = ["tier_010k_5000m"]
  }
}

slug values and associated details can be retrieved through this API call.

Argument Reference

The following arguments are supported:

  • filter - (Required) Query parameters for finding operating systems.

The filter block supports the following:

  • name - Attribute name to filter with.
  • values - One or more values filter with.

Attributes Reference

The following attributes are exported:

  • id - The identifying tier ID.
  • slug - The unique name for the tier.
  • price - The monthly cost for the tier.
  • rate_limit_bytes - The byte-per-second rate limit in the tier.
  • rate_limit_operations - The operations-per-second rate limit in the tier.
  • locations - A list of locations/clusters where the tier is available.

Comments

No comments yet.