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 +}