Files
stream-applications/scripts/terraform/stream-apps-gh-runners/output.tf
2022-10-06 16:08:37 +02:00

19 lines
425 B
HCL

output "region" {
value = var.region
description = "GCloud Region"
}
output "project_id" {
value = var.project
description = "GCloud Project ID"
}
output "kubernetes_cluster_name" {
value = google_container_cluster.primary.name
description = "GKE Cluster Name"
}
output "kubernetes_cluster_host" {
value = google_container_cluster.primary.endpoint
description = "GKE Cluster Host"
}