I am using OpenSearch 1.1.0
I am trying to create users and roles using demo certificates, when I make a call like this
curl -XGET 'http://localhost:9200/_plugins/_security/authinfo?pretty' --cacert ./root-ca.pem --key ./kirk-key.pem --cert ./kirk.pem
I get Unauthorized as response. This is with HTTPS disabled.
While the same works with HTTPS enabled
curl -XGET 'https://localhost:9200/_plugins/_security/authinfo?pretty' --cacert ./root-ca.pem --key ./kirk-key.pem --cert ./kirk.pem
Is there a workaround to make it work with HTTPS disabled.
#opensearch.yml
plugins.security.ssl.http.enabled: false