Hi All,
I’m using the vmware_export_ovf module to back up VMs in my environment. When I run the playbook from the command line on the same host that’s in my inventory for the failed run attached, I have no issues. When I run it from AWX, I see the attached error. The main difference in this example from AWX is that I’m sshing to the target vs running it on the host and adding the delegate_to: localhost flag. How can I update the timeout on AWX to prevent this issue? I’m running AWX 9.1.1
- name: export to ovf
vmware_export_ovf:
validate_certs: false
hostname: “{{ vmware_server }}”
username: “{{ username }}”
password: “{{ password }}”
name: “{{ item }}”
export_with_images: true
export_dir: “{{ export_dir }}”
with_items: “{{ vm_list }}”