Files
Matthias Hinrichs cf7ab67255 initial commit
2025-07-16 23:49:03 +02:00

16 lines
401 B
Terraform

output "cluster_id" {
description = "The ID of the created cluster"
value = rancher2_cluster_v2.cluster.id
}
output "cluster_name" {
description = "The name of the created cluster"
value = rancher2_cluster_v2.cluster.name
}
output "kube_config" {
description = "Kubeconfig for the created cluster"
value = rancher2_cluster_v2.cluster.kube_config
sensitive = true
}