Skip to content

frostmoln_kubernetes_versions (Data Source)

Lists available Kubernetes versions for managed Kubernetes clusters.

Example Usage

terraform
data "frostmoln_kubernetes_versions" "available" {}

# The platform default version
output "default_version" {
  value = [for v in data.frostmoln_kubernetes_versions.available.versions : v.version if v.is_default][0]
}

Schema

Read-Only

Nested Schema for versions

Read-Only:

  • end_of_life (String) The end-of-life date for this version, if known.
  • id (String) The unique identifier of the version entry.
  • is_default (Boolean) Whether this version is the default used when a cluster is created without an explicit version.
  • status (String) The support status of this version ("current", "supported", or "deprecated").
  • version (String) The Kubernetes version string (e.g. "1.35").