1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

[PR #5863/95b8afde backport][stable-6] providerType should be defaulted for keycloak_user_federation mappers (#6079)

providerType should be defaulted for keycloak_user_federation mappers (#5863)

* feat(modules/keycloak_user_federation): mapper ...

... provider type should have a default value

* add changelog fragment

---------

Co-authored-by: Mirko Wilhelmi <Mirko.Wilhelmi@sma.de>
(cherry picked from commit 95b8afdea3)

Co-authored-by: morco <thegreatwiper@web.de>
This commit is contained in:
patchback[bot] 2023-02-25 11:23:26 +01:00 committed by GitHub
parent 3aeaab2708
commit 79d15d526a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View file

@ -0,0 +1,2 @@
minor_changes:
- keycloak_user_federation - make ``org.keycloak.storage.ldap.mappers.LDAPStorageMapper`` the default value for mappers ``providerType`` (https://github.com/ansible-collections/community.general/pull/5863).

View file

@ -456,8 +456,9 @@ options:
providerType: providerType:
description: description:
- Component type for this mapper (only supported value is C(org.keycloak.storage.ldap.mappers.LDAPStorageMapper)). - Component type for this mapper.
type: str type: str
default: org.keycloak.storage.ldap.mappers.LDAPStorageMapper
config: config:
description: description:
@ -782,7 +783,7 @@ def main():
name=dict(type='str'), name=dict(type='str'),
parentId=dict(type='str'), parentId=dict(type='str'),
providerId=dict(type='str'), providerId=dict(type='str'),
providerType=dict(type='str'), providerType=dict(type='str', default='org.keycloak.storage.ldap.mappers.LDAPStorageMapper'),
config=dict(type='dict'), config=dict(type='dict'),
) )