mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 11:51:26 -07:00
Sanity fixes in various modules (#50080)
This commit is contained in:
parent
6caed0c38b
commit
15d39f9108
23 changed files with 372 additions and 340 deletions
|
@ -20,7 +20,7 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
'status': ['preview'],
|
||||
'supported_by': 'community'}
|
||||
|
||||
DOCUMENTATION = '''
|
||||
DOCUMENTATION = r'''
|
||||
---
|
||||
module: ce_aaa_server
|
||||
version_added: "2.4"
|
||||
|
@ -33,51 +33,62 @@ options:
|
|||
state:
|
||||
description:
|
||||
- Specify desired state of the resource.
|
||||
type: str
|
||||
choices: [ absent, present ]
|
||||
default: present
|
||||
choices: ['present', 'absent']
|
||||
authen_scheme_name:
|
||||
description:
|
||||
- Name of an authentication scheme.
|
||||
The value is a string of 1 to 32 characters.
|
||||
type: str
|
||||
first_authen_mode:
|
||||
description:
|
||||
- Preferred authentication mode.
|
||||
type: str
|
||||
choices: ['invalid', 'local', 'hwtacacs', 'radius', 'none']
|
||||
author_scheme_name:
|
||||
description:
|
||||
- Name of an authorization scheme.
|
||||
The value is a string of 1 to 32 characters.
|
||||
type: str
|
||||
first_author_mode:
|
||||
description:
|
||||
- Preferred authorization mode.
|
||||
type: str
|
||||
choices: ['invalid', 'local', 'hwtacacs', 'if-authenticated', 'none']
|
||||
acct_scheme_name:
|
||||
description:
|
||||
- Accounting scheme name.
|
||||
The value is a string of 1 to 32 characters.
|
||||
type: str
|
||||
accounting_mode:
|
||||
description:
|
||||
- Accounting Mode.
|
||||
type: str
|
||||
choices: ['invalid', 'hwtacacs', 'radius', 'none']
|
||||
domain_name:
|
||||
description:
|
||||
- Name of a domain.
|
||||
The value is a string of 1 to 64 characters.
|
||||
type: str
|
||||
radius_server_group:
|
||||
description:
|
||||
- RADIUS server group's name.
|
||||
The value is a string of 1 to 32 case-insensitive characters.
|
||||
type: str
|
||||
hwtacas_template:
|
||||
description:
|
||||
- Name of a HWTACACS template.
|
||||
The value is a string of 1 to 32 case-insensitive characters.
|
||||
type: str
|
||||
local_user_group:
|
||||
description:
|
||||
- Name of the user group where the user belongs. The user inherits all the rights of the user group.
|
||||
The value is a string of 1 to 32 characters.
|
||||
type: str
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
EXAMPLES = r'''
|
||||
|
||||
- name: AAA server test
|
||||
hosts: cloudengine
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue