Getting external tasks by by-passing authentication

Hi,

I have 2 questions -

  1. How can I enable basic authentication on camunda rest APIs so that the endpoints can be accessed by just passing user id and password ?
  2. Do I need to authenticate for fetching all external tasks in the system ? what are the auth mechanisms available ?

Thanks

@Pramod_Yadav There are several implementations available like Basic Auth, SSO using keycloak, etc.

For using Basic Auth:

Set below properties in application.yml file:

camunda.bpm:
  authorization:
    enabled: true

Then follow the post:

Basic Auth for External worker: