tf-gke-test/outputs.tf

20 lines
423 B
Terraform
Raw Normal View History

2023-05-03 14:52:20 +02:00
output "region" {
value = var.region
description = "GCloud Region"
}
output "project" {
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"
}