From 4bdb811dc4c8ba8ad8f058fbb56d530bb414a408 Mon Sep 17 00:00:00 2001 From: dillanb-hashi Date: Tue, 28 Oct 2025 10:41:12 -0700 Subject: [PATCH] chore(e2e): Added variable to fix enos scenario (#6205) --- enos/modules/build_boundary_docker_crt/main.tf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/enos/modules/build_boundary_docker_crt/main.tf b/enos/modules/build_boundary_docker_crt/main.tf index d8d80e3ccc..dd48fca78b 100644 --- a/enos/modules/build_boundary_docker_crt/main.tf +++ b/enos/modules/build_boundary_docker_crt/main.tf @@ -19,6 +19,12 @@ variable "cli_build_path" { type = string } +variable "ui_build_override" { + description = "Override for build for UI automation (oss or ent)" + type = string + default = "" +} + variable "edition" { default = "oss" }