Skip to content

Commit

Permalink
Do not encode sab variables
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Dec 17, 2024
1 parent fc79c17 commit 5357fc7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion roles/pdp/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions roles/pdp/templates/serverapplication.properties.j2
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5357fc7

Please sign in to comment.