diff --git a/blueprints/serverless/cloud-run-corporate/outputs.tf b/blueprints/serverless/cloud-run-corporate/outputs.tf index 83be63888..4349f02ba 100644 --- a/blueprints/serverless/cloud-run-corporate/outputs.tf +++ b/blueprints/serverless/cloud-run-corporate/outputs.tf @@ -14,6 +14,18 @@ * limitations under the License. */ +output "default_URL_cart" { + description = "Cloud Run service 'cart' default URL." + value = (var.custom_domain != null ? + module.cloud_run_cart[0].service.status[0].url : "none") +} + +output "default_URL_checkout" { + description = "Cloud Run service 'checkout' default URL." + value = (var.custom_domain != null ? + module.cloud_run_checkout[0].service.status[0].url : "none") +} + output "default_URL_hello" { description = "Cloud Run service 'hello' default URL." value = module.cloud_run_hello.service.status[0].url