ansible-role-sso/tasks/stop-oidc-test.yml

13 lines
325 B
YAML

- name: Remove oidc-test OpenID Connect client configuration
file:
path: "/etc/hydra/clients.d/{{ oidc_test_app_client_id }}.json"
state: absent
notify:
- Reload hydra clients
become: true
- name: Stop oidc-test app
containers.podman.podman_container:
name: oidc-test
state: absent
become: true