Add a task that optionally gets the OIDC secret from keycloak.
This commit is contained in:
parent
7bb58af3bc
commit
4823460eb7
|
|
@ -1,4 +1,14 @@
|
||||||
---
|
---
|
||||||
|
- name: Get a Keycloak client secret, authentication with credentials
|
||||||
|
community.general.keycloak_clientsecret_info:
|
||||||
|
realm: "{{ kcc_realm }}"
|
||||||
|
auth_keycloak_url: "{{ kcc_auth_keycloak_url }}"
|
||||||
|
auth_realm: "{{ kcc_auth_realm }}"
|
||||||
|
auth_username: "{{ kcc_auth_username }}"
|
||||||
|
auth_password: "{{ kcc_auth_password }}"
|
||||||
|
client_id: "{{client_id}}"
|
||||||
|
register: shinyproxy_keycloak_secret
|
||||||
|
when: kcc_clientid is defined
|
||||||
- name: Shinyproxy as a standalone service
|
- name: Shinyproxy as a standalone service
|
||||||
ansible.builtin.import_tasks: shinyproxy_vm.yml
|
ansible.builtin.import_tasks: shinyproxy_vm.yml
|
||||||
when: not shinyproxy_as_docker_service
|
when: not shinyproxy_as_docker_service
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue