Sanity fixes in various modules (#50080)

This commit is contained in:
Dag Wieers 2018-12-18 16:53:46 +01:00 committed by Adam Miller
commit 15d39f9108
23 changed files with 372 additions and 340 deletions

View file

@ -27,31 +27,34 @@ options:
host:
description:
- Hostname or IP of the A10 Networks device.
type: str
required: true
username:
description:
- An account with administrator privileges.
type: str
required: true
aliases: ['user', 'admin']
aliases: [ admin, user ]
password:
description:
- Password for the C(username) account.
type: str
required: true
aliases: ['pass', 'pwd']
aliases: [ pass, pwd ]
write_config:
description:
- If C(yes), any changes will cause a write of the running configuration
to non-volatile memory. This will save I(all) configuration changes,
including those that may have been made manually or through other modules,
so care should be taken when specifying C(yes).
version_added: 2.2
type: bool
default: 'no'
default: no
version_added: 2.2
validate_certs:
description:
- If C(no), SSL certificates will not be validated. This should only be used
on personally controlled devices using self-signed certificates.
version_added: 2.2
type: bool
default: 'yes'
default: yes
version_added: 2.2
"""