initial commit

This commit is contained in:
Matthias Hinrichs
2025-07-16 23:49:03 +02:00
commit cf7ab67255
4 changed files with 309 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
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
}