Trying to Configure Camunda Zeebe Client SSL enabled in Spring Boot application but getting Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

Here’s my application yaml

zeebe:
  client:
    id: <zeebe>
    secret: <secret_key>
    broker:
      gateway-address: <zeebe host>
    security:
      ssl:
        enabled: true
        certificate-path:/path/certificates/certificate.crt
  token:
    audience: zeebe-api
  authorization-server-url: https://<HOST>/auth/realms/camunda-platform/protocol/openid-connect/token

Note: Certificate.crt is exported from camunda browser.

Please let me know where’s the problem

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.