16 lines
401 B
Terraform
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
|
|
}
|