docs_fragments formatting and typo improvements (#17981)

This commit is contained in:
John R Barker 2016-10-14 15:13:15 +01:00 committed by GitHub
commit 9183bb6391
18 changed files with 133 additions and 136 deletions

View file

@ -17,28 +17,28 @@
class ModuleDocFragment(object):
# Paramaters for VMware modules
# Parameters for VMware modules
DOCUMENTATION = '''
options:
hostname:
description:
- The hostname or IP address of the vSphere vCenter
- The hostname or IP address of the vSphere vCenter.
required: True
username:
description:
- The username of the vSphere vCenter
- The username of the vSphere vCenter.
required: True
aliases: ['user', 'admin']
password:
description:
- The password of the vSphere vCenter
- The password of the vSphere vCenter.
required: True
aliases: ['pass', 'pwd']
validate_certs:
description:
- Allows connection when SSL certificates are not valid. Set to
false when certificates are not trusted
required: False
default: 'True'
choices: ['True', 'False']
validate_certs:
description:
- Allows connection when SSL certificates are not valid. Set to
false when certificates are not trusted.
required: False
default: 'True'
choices: ['True', 'False']
'''