Since the announcement I'm able to list my Azure infrastructure in the Azure Cloud Shell with ansible.
I want to use it with Windows machines too. I installed the winrm locally as it seems that globally is not supported.
pip install "pywinrm>=0.2.2" --user
With this I understand packages are correctly installed
pywinrm (0.3.0)
requests (2.18.4)
xmltodict (0.11.0)
...
Then I run, with the proper credentials a win ping but ansible complains that the WinRM is not available.
ansible -i workspace/azure_rm.py -m win_ping DC-01
Is it possible to run ansible in cloud shell with windows hosts?