mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
58 lines
1.5 KiB
YAML
58 lines
1.5 KiB
YAML
|
---
|
||
|
url: http://localhost:8080/auth
|
||
|
admin_realm: master
|
||
|
admin_user: admin
|
||
|
admin_password: password
|
||
|
realm: myrealm
|
||
|
client_id: myclient
|
||
|
role: myrole
|
||
|
description_1: desc 1
|
||
|
description_2: desc 2
|
||
|
|
||
|
auth_args:
|
||
|
auth_keycloak_url: "{{ url }}"
|
||
|
auth_realm: "{{ admin_realm }}"
|
||
|
auth_username: "{{ admin_user }}"
|
||
|
auth_password: "{{ admin_password }}"
|
||
|
|
||
|
redirect_uris1:
|
||
|
- "http://example.c.com/"
|
||
|
- "http://example.b.com/"
|
||
|
- "http://example.a.com/"
|
||
|
|
||
|
client_attributes1: {"backchannel.logout.session.required": true, "backchannel.logout.revoke.offline.tokens": false}
|
||
|
|
||
|
protocol_mappers1:
|
||
|
- name: 'email'
|
||
|
protocol: 'openid-connect'
|
||
|
protocolMapper: 'oidc-usermodel-property-mapper'
|
||
|
config:
|
||
|
"claim.name": "email"
|
||
|
"user.attribute": "email"
|
||
|
"jsonType.label": "String"
|
||
|
"id.token.claim": "true"
|
||
|
"access.token.claim": "true"
|
||
|
"userinfo.token.claim": "true"
|
||
|
|
||
|
- name: 'email_verified'
|
||
|
protocol: 'openid-connect'
|
||
|
protocolMapper: 'oidc-usermodel-property-mapper'
|
||
|
config:
|
||
|
"claim.name": "email_verified"
|
||
|
"user.attribute": "emailVerified"
|
||
|
"jsonType.label": "boolean"
|
||
|
"id.token.claim": "true"
|
||
|
"access.token.claim": "true"
|
||
|
"userinfo.token.claim": "true"
|
||
|
|
||
|
- name: 'family_name'
|
||
|
protocol: 'openid-connect'
|
||
|
protocolMapper: 'oidc-usermodel-property-mapper'
|
||
|
config:
|
||
|
"claim.name": "family_name"
|
||
|
"user.attribute": "lastName"
|
||
|
"jsonType.label": "String"
|
||
|
"id.token.claim": "true"
|
||
|
"access.token.claim": "true"
|
||
|
"userinfo.token.claim": "true"
|