From c29e4f0102b88033ca268a66e62b8791f54de56a Mon Sep 17 00:00:00 2001 From: JT Archie Date: Thu, 13 Dec 2018 14:25:48 -0700 Subject: [PATCH] fix missing secret jq declaration Signed-off-by: Kira Boyle --- tasks/configure-ert/task.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/configure-ert/task.sh b/tasks/configure-ert/task.sh index 0f2d49c04..3498d9489 100755 --- a/tasks/configure-ert/task.sh +++ b/tasks/configure-ert/task.sh @@ -289,8 +289,8 @@ cf_properties=$( ".properties.system_database.external.routing_username": { "value": $db_routing_username }, ".properties.system_database.external.silk_password": { "value": { "secret": $db_silk_password } }, ".properties.system_database.external.silk_username": { "value": $db_silk_username }, - ".properties.system_database.external.uaa_password": { "value": $db_uaa_password }, - ".properties.system_database.external.uaa_username": { "value": {"secret" : $db_uaa_username } }, + ".properties.system_database.external.uaa_password": { "value": {"secret" : $db_uaa_password } }, + ".properties.system_database.external.uaa_username": { "value": $db_uaa_username }, ".properties.tcp_routing": { "value": "disable" }, ".properties.uaa_database": { "value": "external" }, ".properties.uaa_database.external.host": { "value": $db_host },