mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-18 06:11:07 -07:00
Feature/ldap gssapi sasl authentication (#1595)
* add sasl_class as parameter * type str not string * recreate .gitignore with vscode support * document sasl_class parameter * revert .gitignore changes (separate PR) * docs - add version and end lines with . * add changelog entry * add sasl_class choices to docs as well * changelog should link to issue Co-authored-by: Felix Fontein <felix@fontein.de> Co-authored-by: Wim Van Leuven <wim.vanleuven@ucb.com> Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
cd022c3e2a
commit
7a01c5809c
3 changed files with 20 additions and 2 deletions
|
@ -15,7 +15,7 @@ class ModuleDocFragment(object):
|
|||
options:
|
||||
bind_dn:
|
||||
description:
|
||||
- A DN to bind with. If this is omitted, we'll try a SASL bind with the EXTERNAL mechanism.
|
||||
- A DN to bind with. If this is omitted, we'll try a SASL bind with the EXTERNAL mechanism as default.
|
||||
- If this is blank, we'll use an anonymous bind.
|
||||
type: str
|
||||
bind_pw:
|
||||
|
@ -53,4 +53,12 @@ options:
|
|||
- This should only be used on sites using self-signed certificates.
|
||||
type: bool
|
||||
default: yes
|
||||
sasl_class:
|
||||
description:
|
||||
- The class to use for SASL authentication.
|
||||
- possible choices are C(external), C(gssapi).
|
||||
type: str
|
||||
choices: ['external', 'gssapi']
|
||||
default: external
|
||||
version_added: "2.0.0"
|
||||
'''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue