mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-04-04 09:50:29 -07:00
Merge pull request #257 from NilsDeckert/main
Skip certificate checking
This commit is contained in:
commit
173a85638f
2 changed files with 3 additions and 0 deletions
|
@ -15,6 +15,7 @@
|
|||
ansible.builtin.uri:
|
||||
url: "{{ keycloak_url }}{{ keycloak_context }}/admin/realms/{{ keycloak_realm }}"
|
||||
method: GET
|
||||
validate_certs: false
|
||||
status_code:
|
||||
- 200
|
||||
- 404
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
ansible.builtin.uri:
|
||||
url: "{{ keycloak_url }}{{ keycloak_context }}/admin/realms/{{ client_role.realm | default(keycloak_realm) }}"
|
||||
method: GET
|
||||
validate_certs: false
|
||||
status_code:
|
||||
- 200
|
||||
headers:
|
||||
|
@ -16,6 +17,7 @@
|
|||
default(keycloak_realm) }}/users/{{ (keycloak_user.json | first).id }}/role-mappings/clients/{{ (create_client_result.results | \
|
||||
selectattr('end_state.clientId', 'equalto', client_role.client) | list | first).end_state.id }}/available"
|
||||
method: GET
|
||||
validate_certs: false
|
||||
status_code:
|
||||
- 200
|
||||
headers:
|
||||
|
|
Loading…
Add table
Reference in a new issue