Extract new keycloak_realm role out of keycloak

This commit is contained in:
Guido Grazioli 2021-12-22 10:05:48 +01:00
commit 702d09c731
13 changed files with 197 additions and 15 deletions

View 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"