From 34551e925c26599f893831162c5cd46b0cadeae0 Mon Sep 17 00:00:00 2001 From: ensonic Date: Tue, 24 Mar 2026 11:35:43 +0000 Subject: [PATCH] Output the cluster location, so that we can import this for next steps. This will allow us to access the configuration in other terraform modules. Example: ``` cluster-location = "europe-west1-c" ingress-ip = "a.b.c.d" ingress-ip-ar = {} ``` --- src/bootstrap/cloud/terraform/output.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bootstrap/cloud/terraform/output.tf b/src/bootstrap/cloud/terraform/output.tf index 080b2e588..c52d309bc 100644 --- a/src/bootstrap/cloud/terraform/output.tf +++ b/src/bootstrap/cloud/terraform/output.tf @@ -7,3 +7,7 @@ output "ingress-ip-ar" { for address in google_compute_address.cloud_robotics_ar : address.name => address.address } } + +output "cluster-location" { + value = google_container_cluster.cloud-robotics.location +}