keycloak-oidc: Correct filtering by group

What used to be --keycloak-group flag now is --alowed-group.

Signed-off-by: markoburcul <marko@status.im>
This commit is contained in:
markoburcul 2024-08-16 17:36:54 +02:00 committed by Marko Burčul
parent 1a20a58f81
commit f8f53dcb28
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ services:
--email-domain='{{ oauth_keycloak_domain | mandatory }}'
--code-challenge-method='{{ oauth_keycloak_code_challenge_method }}'
{% for group in oauth_keycloak_groups %}
--keycloak-group={{ group }}
--allowed-group={{ group }}
{% endfor %}
{% for role in oauth_keycloak_roles %}
--allowed-role={{ role }}