From 7ae6d6ff50df4274ac4945b930ca84612bc31dd3 Mon Sep 17 00:00:00 2001 From: Roger Ng Date: Mon, 25 Nov 2024 20:40:11 +0000 Subject: [PATCH] Output GCP Cloud Run conformance URL --- deployment/modules/gcp/cloudrun/outputs.tf | 4 ++++ deployment/modules/gcp/conformance/outputs.tf | 5 +++++ 2 files changed, 9 insertions(+) create mode 100644 deployment/modules/gcp/cloudrun/outputs.tf diff --git a/deployment/modules/gcp/cloudrun/outputs.tf b/deployment/modules/gcp/cloudrun/outputs.tf new file mode 100644 index 00000000..b63869c8 --- /dev/null +++ b/deployment/modules/gcp/cloudrun/outputs.tf @@ -0,0 +1,4 @@ +output "conformance_url" { + description = "The URL of the running conformance server" + value = google_cloud_run_v2_service.default.uri +} diff --git a/deployment/modules/gcp/conformance/outputs.tf b/deployment/modules/gcp/conformance/outputs.tf index 8385bcf0..8bd9cf81 100644 --- a/deployment/modules/gcp/conformance/outputs.tf +++ b/deployment/modules/gcp/conformance/outputs.tf @@ -7,3 +7,8 @@ output "ecdsa_p256_private_key_id" { description = "Signer private key (P256_SHA256)" value = module.secretmanager.ecdsa_p256_private_key_id } + +output "conformance_url" { + description = "The URL of the running conformance server" + value = module.cloudrun.conformance_url +}