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:
parent
3aeaab2708
commit
79d15d526a
2 changed files with 5 additions and 2 deletions
|
@ -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).
|
|
@ -456,8 +456,9 @@ options:
|
|||
|
||||
providerType:
|
||||
description:
|
||||
- Component type for this mapper (only supported value is C(org.keycloak.storage.ldap.mappers.LDAPStorageMapper)).
|
||||
- Component type for this mapper.
|
||||
type: str
|
||||
default: org.keycloak.storage.ldap.mappers.LDAPStorageMapper
|
||||
|
||||
config:
|
||||
description:
|
||||
|
@ -782,7 +783,7 @@ def main():
|
|||
name=dict(type='str'),
|
||||
parentId=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'),
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue