mirror of
https://github.com/hashicorp/vault.git
synced 2026-05-05 20:36:26 +02:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
16 lines
527 B
HCL
16 lines
527 B
HCL
# Copyright IBM Corp. 2016, 2025
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
output "ui_test_stderr" {
|
|
value = var.ui_run_tests ? enos_local_exec.test_ui[0].stderr : "No std out tests where not run"
|
|
}
|
|
|
|
output "ui_test_stdout" {
|
|
value = var.ui_run_tests ? enos_local_exec.test_ui[0].stdout : "No std out tests where not run"
|
|
}
|
|
|
|
output "ui_test_environment" {
|
|
value = join(" \\ \n", local.escaped_ui_test_environment)
|
|
description = "The environment variables that are required in order to run the test:enos yarn target"
|
|
}
|