forked from langfuse/langfuse-terraform-azure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputs.tf
More file actions
28 lines (24 loc) · 874 Bytes
/
outputs.tf
File metadata and controls
28 lines (24 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
output "cluster_name" {
description = "The name of the AKS cluster"
value = azurerm_kubernetes_cluster.this.name
}
output "cluster_host" {
description = "The host of the AKS cluster"
value = azurerm_kubernetes_cluster.this.kube_config[0].host
sensitive = true
}
output "cluster_client_certificate" {
description = "The client certificate for the AKS cluster"
value = azurerm_kubernetes_cluster.this.kube_config[0].client_certificate
sensitive = true
}
output "cluster_client_key" {
description = "The client key for the AKS cluster"
value = azurerm_kubernetes_cluster.this.kube_config[0].client_key
sensitive = true
}
output "cluster_ca_certificate" {
description = "The CA certificate for the AKS cluster"
value = azurerm_kubernetes_cluster.this.kube_config[0].cluster_ca_certificate
sensitive = true
}