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 df0c005
Show file tree
Hide file tree
Showing 2 changed files with 219 additions and 168 deletions.
16 changes: 16 additions & 0 deletions .github/terraform/gke/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,20 @@ 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
}

output "cluster_ca_cert" {
value = module.gke_auth.cluster_ca_certificate
}
Loading

0 comments on commit df0c005

Please sign in to comment.