Files
launchpad/.tofu/platforms/upc/modules/cluster/outputs.tf
Danijel Simeunovic 96dde22884
All checks were successful
AI Code Review / ai-review (pull_request) Successful in 59s
strip cluster bootstraps
2026-04-27 21:43:42 +02:00

32 lines
933 B
HCL

# ─── Cluster ─────────────────────────────────────────────────────────
output "cluster_id" {
description = "The ID of the Kubernetes cluster"
value = upcloud_kubernetes_cluster.main.id
}
output "cluster_name" {
description = "The name of the Kubernetes cluster"
value = upcloud_kubernetes_cluster.main.name
}
output "network_id" {
description = "The ID of the private network"
value = upcloud_network.kubernetes.id
}
output "network_cidr" {
description = "The CIDR block of the private network"
value = var.network_cidr
}
output "kubernetes_version" {
description = "The Kubernetes version of the cluster"
value = upcloud_kubernetes_cluster.main.version
}
output "zone" {
description = "The zone where the cluster is deployed"
value = var.zone
}