fix/shibboleth_entity_id #10

Merged
vfebvre merged 7 commits from fix/shibboleth_entity_id into master 2023-03-02 15:33:51 +01:00
1 changed files with 10 additions and 10 deletions
Showing only changes of commit e57dd36be3 - Show all commits

View File

@ -54,15 +54,6 @@
ansible.builtin.include_tasks: hydra-database.yml ansible.builtin.include_tasks: hydra-database.yml
when: not hydra_use_external_database when: not hydra_use_external_database
- name: Configure HAProxy
template:
src: haproxy.cfg.j2
dest: /etc/haproxy/haproxy.cfg
validate: "haproxy -c -f %s"
notify:
- Restart HAProxy
become: true
- name: Create hydra-clients - name: Create hydra-clients
template: template:
src: hydra-client.json.j2 src: hydra-client.json.j2
@ -121,4 +112,13 @@
- name: Stop OIDC Test app if disabled - name: Stop OIDC Test app if disabled
ansible.builtin.include_tasks: stop-oidc-test.yml ansible.builtin.include_tasks: stop-oidc-test.yml
when: not enable_oidc_test_app when: not enable_oidc_test_app
- name: Configure HAProxy
template:
src: haproxy.cfg.j2
dest: /etc/haproxy/haproxy.cfg
validate: "haproxy -c -f %s"
notify:
- Restart HAProxy
become: true