Re: [ansible-project] URI module - specifying SSL Protocol

2015-10-02 Thread Toshio Kuratomi
What version of ansible are you running and what version of python? Do you have any idea what versions of SSL your system's OpenSSL library supports? Python versions before 2.7.9 do not give the ability to specify SSL protocols above tls1.0 explicitly. Since ansible has to run with older

[ansible-project] URI module - specifying SSL Protocol

2015-10-01 Thread Abhishek R.
Hi, I'm trying an HTTP post with the following task - --- - name: try doing a POST uri: url: "destinationURL" method: POST user: myusername password: mypassword force_basic_auth: yes register: POSTResponse - debug: var=POSTResponse - I get an error runtime stating -