mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-05-12 14:29:39 +00:00
11 lines
302 B
HCL
11 lines
302 B
HCL
# Kubernetes cluster
|
|
output "kubernetes_cluster_id" {
|
|
value = google_container_cluster.this.id
|
|
description = "The fully-qualified ID of the GKE cluster."
|
|
}
|
|
|
|
output "kubernetes_cluster_name" {
|
|
value = google_container_cluster.this.name
|
|
description = "The name of the GKE cluster."
|
|
}
|