From 5357fc795a23fcddfdabab05a2631c93c9a23640 Mon Sep 17 00:00:00 2001 From: Okke Harsta Date: Tue, 17 Dec 2024 15:17:09 +0100 Subject: [PATCH] Do not encode sab variables --- roles/pdp/defaults/main.yml | 2 +- roles/pdp/templates/serverapplication.properties.j2 | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/pdp/defaults/main.yml b/roles/pdp/defaults/main.yml index 687f5f5ee..782635029 100644 --- a/roles/pdp/defaults/main.yml +++ b/roles/pdp/defaults/main.yml @@ -22,4 +22,4 @@ pdp_manage_provision_samlsp_sign: false pdp_spring_flyway_enabled: true pdp_manage_push_testmode: true pdp_docker_networks: - -name: loadbalancer + - name: loadbalancer diff --git a/roles/pdp/templates/serverapplication.properties.j2 b/roles/pdp/templates/serverapplication.properties.j2 index 47a0eca3d..2afe79c37 100644 --- a/roles/pdp/templates/serverapplication.properties.j2 +++ b/roles/pdp/templates/serverapplication.properties.j2 @@ -74,9 +74,9 @@ voot.clientSecret={{ pdp_client_secret }} voot.scopes ={{ pdp_manage_provision_oidcrp_scopes }} # SAB configuration -sab.userName="{{ aa.sab_rest_username }}" -sab.password="{{ aa.sab_rest_password }}" -sab.endpoint="{{ aa.sab_rest_endpoint }}" +sab.userName={{ aa.sab_rest_username }} +sab.password={{ aa.sab_rest_password }} +sab.endpoint={{ aa.sab_rest_endpoint }} # Do not expose any of the Spring BOOT endpoints except the health and info for loadbalancer health check endpoints.enabled=false