mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-23 19:01:26 -07:00
[PR #6698/ccdcf70d backport][stable-7] Use semantic markup (modules t-z) (#6722)
Use semantic markup (modules t-z) (#6698)
* Use semantic markup.
* Fix escaping.
(cherry picked from commit ccdcf70d69
)
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
7d7e099333
commit
91110f4933
29 changed files with 186 additions and 189 deletions
|
@ -8,7 +8,7 @@ from __future__ import absolute_import, division, print_function
|
|||
__metaclass__ = type
|
||||
|
||||
|
||||
DOCUMENTATION = '''
|
||||
DOCUMENTATION = r'''
|
||||
---
|
||||
module: vertica_user
|
||||
short_description: Adds or removes Vertica database users and assigns roles
|
||||
|
@ -44,7 +44,7 @@ options:
|
|||
- The user's password encrypted by the MD5 algorithm.
|
||||
- The password must be generated with the format C("md5" + md5[password + username]),
|
||||
resulting in a total of 35 characters. An easy way to do this is by querying
|
||||
the Vertica database with select 'md5'||md5('<user_password><user_name>').
|
||||
the Vertica database with select V('md5'||md5('<user_password><user_name>'\)).
|
||||
type: str
|
||||
expired:
|
||||
description:
|
||||
|
@ -53,7 +53,7 @@ options:
|
|||
ldap:
|
||||
description:
|
||||
- Set to true if users are authenticated via LDAP.
|
||||
- The user will be created with password expired and set to I($ldap$).
|
||||
- The user will be created with password expired and set to V($ldap$).
|
||||
type: bool
|
||||
roles:
|
||||
description:
|
||||
|
@ -62,7 +62,7 @@ options:
|
|||
type: str
|
||||
state:
|
||||
description:
|
||||
- Whether to create C(present), drop C(absent) or lock C(locked) a user.
|
||||
- Whether to create (V(present)), drop (V(absent)), or lock (V(locked)) a user.
|
||||
choices: ['present', 'absent', 'locked']
|
||||
default: present
|
||||
type: str
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue