Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update vcenter_vm_hardware_disk description #548

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions changelogs/fragments/548-update-docs-for-vm-harware-disk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
trivial:
- vcenter_vm_hardware_disk - Updated description to explicitly mention that the disk type is thin
3 changes: 3 additions & 0 deletions config/modules.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,9 @@
- vcenter_vm_hardware_cpu:
- vcenter_vm_hardware_disk_info:
- vcenter_vm_hardware_disk:
documentation:
short_description: Adds a thin provisioned virtual disk to the virtual machine
description: Adds a virtual disk to the virtual machine. The disk (provision) type is always 'thin'. While adding the virtual disk, a new VMDK file may be created or an existing VMDK file may be used to back the virtual disk.
- vcenter_vm_hardware_ethernet_info:
- vcenter_vm_hardware_ethernet:
- vcenter_vm_hardware_floppy_info:
Expand Down
8 changes: 4 additions & 4 deletions plugins/modules/vcenter_vm_hardware_disk.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@

DOCUMENTATION = r"""
module: vcenter_vm_hardware_disk
short_description: Adds a virtual disk to the virtual machine
description: Adds a virtual disk to the virtual machine. While adding the virtual
disk, a new VMDK file may be created or an existing VMDK file may be used to back
the virtual disk.
short_description: Adds a thin provisioned virtual disk to the virtual machine
description: Adds a virtual disk to the virtual machine. The disk (provision)
type is always 'thin'. While adding the virtual disk, a new VMDK file may
be created or an existing VMDK file may be used to back the virtual disk.
options:
backing:
description:
Expand Down
Loading