Hi,
I have a vault server setup with TLS enabled. And on my client machine the curl command works :
output:
{"initialized":true,"sealed":true,"standby":true}
But I am not able to get the same output with Python requests. I have the openssl 1.0.1g and compiled python 3.4 with that.
the code is simple:
import requests
output:
<Response [500]>
I have setup the vault with self signed certificate and key. So I am using the verify=False parameter in case of python requests, it still does not work.
Any help is appreciated.
Thanks,
Pavan