Closed danielkec closed 1 year ago
Workaround
#TODO: Remove when https://github.com/helidon-io/helidon/issues/5537 is fixed
security:
providers:
- jwt:
atn-token:
verify-signature: false
sign-token:
outbound:
- name: "propagate-token"
I ran into this today when migrating some services to Helidon from another MicroProfile implementation. My workaround was to simply add propagate: false
to the application.yaml
after reviewing the source to JwtAuthProvider.
After looking at the documentation and the MicroProfile JWT Auth Spec, I'm left with a few questions/observations:
propagate
value should default to false
absent the necessary configuration.mp.jwt.*
. This security provider is NOT configured under security.providers
. Is the placement of these configuration values correct at the root?I'm working on getting the OCA signed so I can help address these and future issues.
Environment Details
Problem Description
When using only MP JWT for securing Helidon MP service with following config:
It's not possible to use Jersey client.