Skip to content

frostmoln_kubernetes_tiers (Data Source)

Lists available control-plane tiers for managed Kubernetes clusters.

Example Usage

terraform
data "frostmoln_kubernetes_tiers" "available" {}

# The default control-plane tier key
output "default_tier" {
  value = [for t in data.frostmoln_kubernetes_tiers.available.tiers : t.key if t.is_default][0]
}

Schema

Read-Only

Nested Schema for tiers

Read-Only:

  • control_plane_nodes (Number) The number of control-plane nodes in this tier.
  • ha_enabled (Boolean) Whether this tier runs a highly available control plane.
  • is_default (Boolean) Whether this tier is the default used when a cluster is created without an explicit tier.
  • key (String) The canonical tier key (used as control_plane_tier on the cluster resource).
  • name (String) The human-readable tier name.