Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions roles/dashboard/templates/serverapplication.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ spDashboard.password={{ dashboard_sp_dashboard_password }}

# SAB connection details
sab-rest.endpoint={{ dashboard.sab_rest_endpoint }}
sab-rest.username=cdk
sab-rest.password={{ dashboard_sab_rest_password }}
sab-rest.username={{ dashboard.sab_rest_username }}
sab-rest.password={{ dashboard.sab_rest_password }}

# SAB roles
admin.surfconext.idp.sabRole=SURFconextverantwoordelijke
Expand Down
8 changes: 8 additions & 0 deletions roles/invite/templates/serverapplication.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,14 @@ external-api-configuration:
password: "{{ invite.profile_secret }}"
scopes:
- profile
- username: {{ invite.pdp_user }}
password: "{{ invite.pdp_secret }}"
scopes:
- crm
- username: {{ invite.idp_dashboard_user }}
password: "{{ invite.idp_dashboard_secret }}"
scopes:
- crm
- username: {{ invite.sp_dashboard_user }}
password: "{{ invite.sp_dashboard_secret }}"
organizationGUIDFallback: {{ invite.surf_idp_organization_guid }}
Expand Down
8 changes: 4 additions & 4 deletions roles/pdp/handlers/main.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
- name: restart pdpserver
community.docker.docker_container:
name: pdpserver
state: started
name: "pdp"
state: "started"
restart: true
# avoid restarting it creates unexpected data loss according to docker_container_module notes
comparisons:
'*': ignore
when: pdpservercontainer is success and pdpservercontainer is not change
'*': "ignore"
when: "pdpservercontainer is success and pdpservercontainer is not change"
6 changes: 3 additions & 3 deletions roles/pdp/templates/serverapplication.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ email:
voot:
serviceUrl: https://voot.{{ base_domain }}
sab:
password: {{ aa.sab_rest_password }}
userName: {{ aa.sab_rest_username }}
endpoint: {{ aa.sab_rest_endpoint }}
password: {{ pdp.sab_rest_password }}
userName: {{ pdp.sab_rest_username }}
endpoint: {{ pdp.sab_rest_endpoint }}
policies:
cachePolicies: {{ pdp.cache_policies }}
manage:
Expand Down