From 9c03ef2105a427cb2d7e7c70d2bd40b0ec20b628 Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Fri, 5 Aug 2022 18:30:43 -0400 Subject: [PATCH] Fix TF character usage --- enos/modules/test_cli_ui/tests.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/enos/modules/test_cli_ui/tests.tf b/enos/modules/test_cli_ui/tests.tf index 7e33e88c7b..4d751801c8 100644 --- a/enos/modules/test_cli_ui/tests.tf +++ b/enos/modules/test_cli_ui/tests.tf @@ -61,8 +61,8 @@ locals { resource "enos_local_exec" "create_account" { environment = { BOUNDARY_ADDR = var.alb_boundary_api_addr, - BOUNDARY_TOKEN = local.auth_token - BP = ${local.test_password} + BOUNDARY_TOKEN = local.auth_token, + BP = local.test_password } inline = ["${var.local_boundary_dir}/boundary accounts create password -auth-method-id ${var.auth_method_id} -login-name ${local.test_user} -name ${local.test_user} -password env://BP -description 'test user' -format json"] }