Browse code

Merge pull request #51118 from Akasurde/backport/2.6/51047

[backport/2.6] Update vmware.py minor typo

Abhijeet Kasurde authored on 2019/01/22 01:34:22
Showing 2 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,3 @@
0
+---
1
+minor_changes:
2
+- Fixed typo in vmware documentation fragment. Changed "supported added" to "support added".
... ...
@@ -11,36 +11,36 @@ options:
11 11
       description:
12 12
       - The hostname or IP address of the vSphere vCenter or ESXi server.
13 13
       - If the value is not specified in the task, the value of environment variable C(VMWARE_HOST) will be used instead.
14
-      - Environment variable supported added in version 2.6.
15
-      required: False
14
+      - Environment variable support added in version 2.6.
15
+      type: str
16 16
     username:
17 17
       description:
18 18
       - The username of the vSphere vCenter or ESXi server.
19 19
       - If the value is not specified in the task, the value of environment variable C(VMWARE_USER) will be used instead.
20
-      - Environment variable supported added in version 2.6.
21
-      required: False
22
-      aliases: ['user', 'admin']
20
+      - Environment variable support added in version 2.6.
21
+      type: str
22
+      aliases: [ admin, user ]
23 23
     password:
24 24
       description:
25 25
       - The password of the vSphere vCenter or ESXi server.
26 26
       - If the value is not specified in the task, the value of environment variable C(VMWARE_PASSWORD) will be used instead.
27
-      - Environment variable supported added in version 2.6.
28
-      required: False
29
-      aliases: ['pass', 'pwd']
27
+      - Environment variable support added in version 2.6.
28
+      type: str
29
+      aliases: [ pass, pwd ]
30 30
     validate_certs:
31 31
       description:
32 32
       - Allows connection when SSL certificates are not valid. Set to C(false) when certificates are not trusted.
33 33
       - If the value is not specified in the task, the value of environment variable C(VMWARE_VALIDATE_CERTS) will be used instead.
34
-      - Environment variable supported added in version 2.6.
35
-      - If set to C(True), please make sure Python >= 2.7.9 is installed on the given machine.
36
-      default: 'True'
34
+      - Environment variable support added in version 2.6.
35
+      - If set to C(yes), please make sure Python >= 2.7.9 is installed on the given machine.
36
+      default: 'yes'
37 37
       type: bool
38 38
     port:
39 39
       description:
40 40
       - The port number of the vSphere vCenter or ESXi server.
41 41
       - If the value is not specified in the task, the value of environment variable C(VMWARE_PORT) will be used instead.
42
-      - Environment variable supported added in version 2.6.
43
-      required: False
42
+      - Environment variable support added in version 2.6.
43
+      type: int
44 44
       default: 443
45 45
       version_added: 2.5
46 46
 '''