Uhh this is a chicken and egg problem if i've ever seen one, this code:
```
- name: Create a new AWX token using username/password
delegate_to: 127.0.0.1
awx.awx.tower_token:
description: 'Creating token to test tower jobs'
scope: "write"
state: present
tower_host: "https://{{ tower_host }}"
tower_username: "{{ tower_username }}"
tower_password: "{{ tower_password }}"
- debug:
msg: "The token: {{ tower_token }}"
```
Produces the same error:
```
TASK [modify-awx-account : Create a new AWX token using username/password] *****
fatal: [dummyvalue.com]: FAILED! => {"changed": false, "msg": "Failed to get token: The read operation timed out"} ```
:S today is not a good day for me lol