chore: fix the incorrect `scope` claim name in the API doc (#36241)

Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>

Mirrored from https://github.com/envoyproxy/envoy @ 6da051b1f229235ef5956df18c2894198ce3a807
main
update-envoy[bot] 2 months ago
parent 1b0bdcd519
commit 082df9012a
  1. 6
      envoy/extensions/filters/http/jwt_authn/v3/config.proto

@ -63,9 +63,9 @@ message JwtProvider {
message NormalizePayload {
// Each claim in this list will be interpreted as a space-delimited string
// and converted to a list of strings based on the delimited values.
// Example: a token with a claim ``scopes: "email profile"`` is translated
// to dynamic metadata ``scopes: ["email", "profile"]`` if this field is
// set value ``["scopes"]``. This special handling of ``scopes`` is
// Example: a token with a claim ``scope: "email profile"`` is translated
// to dynamic metadata ``scope: ["email", "profile"]`` if this field is
// set value ``["scope"]``. This special handling of ``scope`` is
// recommended by `RFC8693
// <https://datatracker.ietf.org/doc/html/rfc8693#name-scope-scopes-claim>`_.
repeated string space_delimited_claims = 1;

Loading…
Cancel
Save