mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-04-04 18:00:28 -07:00
Skip certificate checking
This commit is contained in:
parent
910a2aa5d4
commit
b3e93dd89b
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