Connecting Datahub to AWS Elasticsearch Domain with HTTPS - Troubleshooting SSL Configuration Error

Original Slack Thread

Hello, are there any instructions for connecting Datahub to a AWS elasticsearch domain with https? I’ve been following this guide but cannot get the datahub-frontend pod to start. It’s failing with No configuration setting found for key 'analytics.elastic.sslContext.sslProtocol' . The datahub-elasticsearch-setup job seems to connect to the domain and completes.
https://datahubproject.io/docs/deploy/aws/#elasticsearch-service

NM, I think I was able to resolve the error by adding the following to my helm values:

  enabled: true
  image:
    repository: linkedin/datahub-frontend-react
    tag: latest
  extraEnvs:
    - name: ELASTIC_CLIENT_USE_SSL
      value: "false"```