Skip to content

Commit

Permalink
test(e2e): Trim space in worker_led_token output
Browse files Browse the repository at this point in the history
  • Loading branch information
moduli committed Dec 20, 2023
1 parent e56d987 commit 7292698
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions enos/enos-scenario-e2e-ui-docker.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,6 @@ scenario "e2e_ui_docker" {
}
}

// !! add variables to test_e2e_ui (i.e. ldap, worker variables)

step "create_ldap_server" {
module = module.docker_ldap
depends_on = [
Expand Down
2 changes: 1 addition & 1 deletion enos/modules/docker_worker/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -155,5 +155,5 @@ output "upstream_address" {
}

output "worker_led_token" {
value = var.worker_led_registration ? enos_local_exec.get_worker_led_token[0].stdout : ""
value = var.worker_led_registration ? trimspace(enos_local_exec.get_worker_led_token[0].stdout) : ""
}

0 comments on commit 7292698

Please sign in to comment.