-
Bug
-
Resolution: Duplicate
-
Undefined
-
None
-
Unspecified
-
False
-
-
False
-
-
https://github.com/ansible-collections/vmware.vmware_rest/issues/367
<!--- Verify first that your feature was not already discussed on GitHub -->
<!--- Complete all sections as described, this form is processed automatically -->
-
-
-
-
- SUMMARY
<!--- Describe the new feature/improvement briefly below -->
Allow adding advanced options during VM Creation.
- SUMMARY
-
-
-
Allow adding advanced options for exiting VMs. Optional allow removing advanced options.
Similar property of the vmware_guest community module: https://docs.ansible.com/ansible/latest/collections/community/vmware/vmware_guest_module.html#parameter-advanced_settings
-
-
-
-
- ISSUE TYPE
-
-
-
- Feature Idea
-
-
-
-
- COMPONENT NAME
<!--- Write the short name of the module, plugin, task or feature below, use your best guess if unsure -->
vcenter_vm
- COMPONENT NAME
-
-
-
-
-
-
-
- ADDITIONAL INFORMATION
<!--- Describe how the feature would be used, why it is needed and what it would solve -->
- ADDITIONAL INFORMATION
-
-
-
<!--- Paste example playbooks or commands between quotes below -->
Example for a dedicated module:
```yaml
—
- name: Lock the VM guest session when the remote console is disconnected
community.vmware.vmware_guest_custom_attributes:
hostname: "{{ vcenter_hostname }}"
username: "{{ vcenter_username }}"
password: "{{ vcenter_password }}"
validate_certs: false
uuid: "{{ item.uuid }}"
state: present
attributes: - name: "tools.guest.desktop.autolock"
value: 'True'
when: "'vCLS (' not in item.guest_name"
with_items: "{{ vm_filtered }}"
```
<!--- HINT: You can also paste gist.github.com links for larger files -->