From 9292d4b8572ce20db9f2f26ee038a16028cc0609 Mon Sep 17 00:00:00 2001 From: Kostiantyn Masliuk <1pkg@protonmail.com> Date: Fri, 11 Oct 2024 16:19:36 -0700 Subject: [PATCH] benchmark: use static URL value for benchmark admin console URL for slack automation (#14345) --- testing/benchmark/outputs.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/benchmark/outputs.tf b/testing/benchmark/outputs.tf index 2cad7994126..a2f40c81e43 100644 --- a/testing/benchmark/outputs.tf +++ b/testing/benchmark/outputs.tf @@ -43,6 +43,6 @@ output "apm_server_ip" { } output "admin_console_url" { - value = var.run_standalone ? "" : module.ec_deployment[0].admin_console_url + value = var.run_standalone ? "https://cloud.elastic.co/deployments" : module.ec_deployment[0].admin_console_url description = "The admin console URL" }