mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-23 19:01:26 -07:00
Keycloak authentication provider ID choices (#6763)
* refac: provider id choices * feat: minor changes fragment * Update changelogs/fragments/6763-keycloak-auth-provider-choices.yml Co-authored-by: Felix Fontein <felix@fontein.de> --------- Co-authored-by: Skrekulko <Skrekulko@users.noreply.github.com> Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
3571df837d
commit
a53bf9d261
2 changed files with 4 additions and 1 deletions
|
@ -43,6 +43,7 @@ options:
|
|||
providerId:
|
||||
description:
|
||||
- C(providerId) for the new flow when not copied from an existing flow.
|
||||
choices: [ "basic-flow", "client-flow" ]
|
||||
type: str
|
||||
copyFrom:
|
||||
description:
|
||||
|
@ -331,7 +332,7 @@ def main():
|
|||
meta_args = dict(
|
||||
realm=dict(type='str', required=True),
|
||||
alias=dict(type='str', required=True),
|
||||
providerId=dict(type='str'),
|
||||
providerId=dict(type='str', choices=["basic-flow", "client-flow"]),
|
||||
description=dict(type='str'),
|
||||
copyFrom=dict(type='str'),
|
||||
authenticationExecutions=dict(type='list', elements='dict',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue