Connection Timeout between Ansible and Windows Server
You have a typo in your vars file:
ansble_connection=winrm
This should be:
ansible_connection=winrm
(there is an i
missing).
That's why Ansible is trying to connect via SSH instead of WinRM.