mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-07-31 09:01:32 -07:00
Extract new keycloak_realm role out of keycloak
This commit is contained in:
parent
1ded0a1cfe
commit
702d09c731
13 changed files with 197 additions and 15 deletions
13
roles/keycloak_realm/tasks/manage_client_users.yml
Normal file
13
roles/keycloak_realm/tasks/manage_client_users.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
- name: Manage Users
|
||||
include_tasks: manage_user.yml
|
||||
loop: "{{ client.users | flatten }}"
|
||||
loop_control:
|
||||
loop_var: user
|
||||
|
||||
- name: Manage User Roles
|
||||
include_tasks: manage_user_roles.yml
|
||||
loop: "{{ client.users | flatten }}"
|
||||
loop_control:
|
||||
loop_var: user
|
||||
when: "'client_roles' in user"
|
Loading…
Add table
Add a link
Reference in a new issue