Vault Automation 0c6c13dd38
license: update headers to IBM Corp. (#10229) (#10233)
* 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>
2025-10-21 15:20:20 -06:00

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"
}