Gonéri Le Bouder

Results 176 comments of Gonéri Le Bouder

The module documentation is autogenerated from VMware API documentation. I just checked and the typo come from there.

Thank you for your report @RobVerduijn.

According to the error message above, Ansible uses Python 3.6 to run the module and aiohttp is indeed not available (`No module named 'aiohttp'`). What make you think aiohttp is...

Hi @RobVerduijn, Not really because Python cannot find `aiohttp`. I would like to take the time to reproduce the issue.

Interesting, `aiohttp` is indeed present, but in a python3.6 venv. So you can install `python3-aiohttp` in parallel. If you run RHEL, you can find the RPM on EPEL.

Yes. I totally understand your point. We are working on a solution for this problem that is called Execution Environment: https://docs.ansible.com/ansible-tower/latest/html/administration/external_execution_envs.html. In the meantime, you can install the `python3-aiohttp` from...

Hi, The recent Ansible Automation Platform 2.0 comes with a new feature called Execution Environment. The modules are called from a container that embeds the dependencies. aiohttp is included in...

The `vcenter_vm_guest_power` module issues a request to the guest operating system asking it (nicely) to reform a reboot. Whereas `vcenter_vm_power` operates at the vcenter level and is unconditional. You're looking...

Thank you @robbevl for the bug report. What version of vSphere do you use?

I've tried to reproduce the problem with the following tasks: ```yaml - name: Create the Applications folder community.vmware.vcenter_folder: datacenter_name: my_dc folder_name: Applications folder_type: vm state: present - name: Create the...