ParseJwt
Configuration
Name
Description
Default value
Mandatory
Expanded
Example with local keystore for signature validation:
{
"name": "ParseJwt",
"config": {
"jwt_src": "${session.access_token}",
"keystore": {
"path": "/fortified_test/config/keystore.p12",
"password": "secret",
"type": "PKCS12"
},
"keystore_alias" : "jwt"
}
}
Example with jwks_endpoint to fetch key for signature validation:
{
"name": "ParseJwt",
"config": {
"jwt_src": "${session.access_token}",
"internal_http_destination": "http_client_1",
"jwks_endpoint": "http://192.168.50.228:8080/oidc/tenant1/.well-known/openid-configuration/jwks"
}
}