Skip to content

frostmoln_volume_tiers (Data Source)

List the available block-storage volume tiers. Only tiers with status "offered" can be selected when creating a volume; the offered set is server-defined and may change without a provider release.

Example Usage

terraform
data "frostmoln_volume_tiers" "all" {}

# The tier keys that may be used as a volume's volume_type (offered only).
output "offered_volume_tier_keys" {
  value = [for t in data.frostmoln_volume_tiers.all.volume_tiers : t.key if t.status == "offered"]
}

Schema

Read-Only

Nested Schema for volume_tiers

Read-Only:

  • description (String) A human-readable description of the tier.
  • is_default (Boolean) Whether this tier is the default offered tier.
  • key (String) The tier key — also the volume's volume_type value (e.g. "ssd").
  • name (String) The display name of the tier.
  • pricing_tier_key (String) The billing pricing tier key this tier maps to.
  • sort_order (Number) The display ordering of the tier.
  • status (String) The tier status (offered, unavailable, coming_soon). Only "offered" tiers are selectable when creating a volume.