Hi There,
I have experimenting kong with oidc plugin in docker(GitHub - nokia/kong-oidc: OIDC plugin for Kong)
I have a simple Spring Boot application as a upstream server.
I am using okta as identity provider. Kong is routing only authenticated requests to Spring Boot application as expected. But the i am missing the headers
X-Userinfo, X-Access-Token and X-Id-Token in the http requests routed to my application.
I am enabling oidc plugin on my route with below params
name=oidc
config.client_id=****
config.client_secret=****
config.discovery=****
Any thing i miss here?