Skip to content

Commit

Permalink
🐛 Fix GKE cloud test
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Zunker <[email protected]>
  • Loading branch information
czunker committed Oct 31, 2023
1 parent f9421b5 commit 2ae4875
Show file tree
Hide file tree
Showing 2 changed files with 198 additions and 168 deletions.
12 changes: 12 additions & 0 deletions .github/terraform/gke/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,16 @@ resource "local_file" "kubeconfig" {
depends_on = [google_container_cluster.cluster]
content = module.gke_auth.kubeconfig_raw
filename = "kubeconfig"
}

output "cluster_name" {
value = google_container_cluster.cluster.name
}

output "cluster_location" {
value = google_container_cluster.cluster.location
}

output "cluster_project" {
value = google_container_cluster.cluster.project
}
Loading

0 comments on commit 2ae4875

Please sign in to comment.