Wondering if there is an example on configuring Proxy Authentication + Extra roles provided via LDAP.
Elasticsearch version: 7.8.0
Currently we have a working cluster using proxy authentication which provides correctly username and role for kibana, but we want to move away from sending the roles from proxy servers.
I have noticed that for any authenticaton domain a authentication_backend.type: ldap can be provided, but have no idea how to configure this section and if there is a need to also add an authz. Is there a full example that I can reference for guidance?
Small snippet of current procy configuration:
proxy_auth_domain:
http_enabled: true
transport_enabled: true
order: 0
http_authenticator:
challenge: false
type: "proxy"
config:
user_header: "X-Proxy-User"
roles_header: "X-Proxy-Roles"
authentication_backend:
type: "noop"
config: {}
Thanks