From a63f32df2827fb5f4117a0faaf861a7644c433d8 Mon Sep 17 00:00:00 2001 From: Michael Li Date: Wed, 24 Sep 2025 12:34:15 -0400 Subject: [PATCH] chore(e2e): Add controller and worker ips to output of scenario (#6060) --- enos/enos-scenario-e2e-ui-aws.hcl | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/enos/enos-scenario-e2e-ui-aws.hcl b/enos/enos-scenario-e2e-ui-aws.hcl index fce6762012..69f204599a 100644 --- a/enos/enos-scenario-e2e-ui-aws.hcl +++ b/enos/enos-scenario-e2e-ui-aws.hcl @@ -215,7 +215,11 @@ scenario "e2e_ui_aws" { } } - output "test_results" { - value = step.run_e2e_test.test_results + output "controller_ips" { + value = step.create_boundary_cluster.controller_ips + } + + output "worker_ips" { + value = step.create_boundary_cluster.worker_ips } }