I am trying to connect to solr servers which runs on AWS EC2 instances with custom authentication using: https://github.com/django-haystack/pysolr/tree/5c3a68447734e77be9e9648b184f8d600fd661c5
solr = pysolr.Solr('https://path_to_the_loadbalancer/solr/collection_name',
auth=HTTPBasicAuth('username', 'password'), verify=path/to/cert.perm)
Question: how to give the cert path if the cert exist in AWS ACM?
I tried keeping verify=False which worked, but I wanted to find out the right approach of providing cert