Skip to content
This repository has been archived by the owner on Feb 11, 2020. It is now read-only.

Commit

Permalink
fix missing secret jq declaration
Browse files Browse the repository at this point in the history
Signed-off-by: Kira Boyle <[email protected]>
  • Loading branch information
JT Archie authored and kcboyle committed Dec 13, 2018
1 parent 6b9dab6 commit c29e4f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/configure-ert/task.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand Down

0 comments on commit c29e4f0

Please sign in to comment.