Skip to content

Commit 31ab2cd

Browse files
chore(e2e): fixed enos scripts to allow for crt builder in windows scenario (#6042)
1 parent dfc638f commit 31ab2cd

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

enos/modules/build_crt/main.tf

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,26 @@ variable "path" {
66
default = "/tmp"
77
}
88

9+
variable "build_target" {
10+
default = "build-ui build"
11+
}
12+
13+
variable "binary_name" {
14+
default = "boundary"
15+
}
16+
17+
variable "artifact_name" {
18+
default = "boundary"
19+
}
20+
921
variable "edition" {
1022
default = "oss"
1123
}
1224

25+
variable "goos" {
26+
default = "linux"
27+
}
28+
1329
output "artifact_path" {
1430
value = var.path
1531
}

0 commit comments

Comments
 (0)