From 31ab2cdce812de61551bc3cf202272aceee480a9 Mon Sep 17 00:00:00 2001 From: dillanb-hashi Date: Tue, 9 Sep 2025 11:12:17 -0700 Subject: [PATCH] chore(e2e): fixed enos scripts to allow for crt builder in windows scenario (#6042) --- enos/modules/build_crt/main.tf | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/enos/modules/build_crt/main.tf b/enos/modules/build_crt/main.tf index fa4a190d7c..7a58101ff7 100644 --- a/enos/modules/build_crt/main.tf +++ b/enos/modules/build_crt/main.tf @@ -6,10 +6,26 @@ variable "path" { default = "/tmp" } +variable "build_target" { + default = "build-ui build" +} + +variable "binary_name" { + default = "boundary" +} + +variable "artifact_name" { + default = "boundary" +} + variable "edition" { default = "oss" } +variable "goos" { + default = "linux" +} + output "artifact_path" { value = var.path }