File tree Expand file tree Collapse file tree
environments/template/group_vars
roles/attribute-aggregation/templates Expand file tree Collapse file tree Original file line number Diff line number Diff line change 230230 invite_username : aa
231231 invite_password : " todo"
232232 aggregate_cache : 0
233+ institutions :
234+ " https://mock-sp " :
235+ baseUrl : " http://localhost:8989/"
236+ userName : " api-user"
237+ password : " secret"
238+ " https://mock-rp " :
239+ baseUrl : " http://localhost:8989"
240+ userName : " api-user"
241+ password : " secret"
233242
234243oidcng :
235244 issuer : https://connect.{{ base_domain }}/
Original file line number Diff line number Diff line change 11{
2- "https://mock-sp": {
3- "baseUrl": "http://localhost:8989/",
4- "userName": "api-user",
5- "password": "secret"
6- },
7- "https://mock-rp": {
8- "baseUrl": "http://localhost:8989",
9- "userName": "api-user",
10- "password": "secret"
11- }
12- }
2+ {% for institution_key , institution in aa .institutions .items () %}
3+ "{{ institution_key }}": {
4+ "baseUrl": "{{ institution.baseUrl }}",
5+ "userName": "{{ institution.userName }}",
6+ "password": "{{ institution.password }}"
7+ }{% if not loop .last %} ,{% endif %}
8+ {% endfor %}
9+ }
You can’t perform that action at this time.
0 commit comments