Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for jwt_authn (0.19 sec)

  1. pilot/pkg/security/authz/builder/testdata/http/extended-single-policy-out.yaml

                            filter: envoy.filters.http.jwt_authn
                            path:
                            - key: payload
                            - key: iss
                            value:
                              stringMatch:
                                exact: rule[0]-from[0]-requestPrincipal[1]
                        - metadata:
                            filter: envoy.filters.http.jwt_authn
                            path:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/testdata/http/extended-allow-full-rule-out.yaml

                            filter: envoy.filters.http.jwt_authn
                            path:
                            - key: payload
                            - key: iss
                            value:
                              stringMatch:
                                exact: requestPrincipals
                        - metadata:
                            filter: envoy.filters.http.jwt_authn
                            path:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/model/generator_test.go

            and_ids:
              ids:
              - metadata:
                  filter: envoy.filters.http.jwt_authn
                  path:
                  - key: payload
                  - key: iss
                  value:
                    string_match:
                      safe_regex: {regex: .+}
              - metadata:
                  filter: envoy.filters.http.jwt_authn
                  path:
                  - key: payload
                  - key: sub
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/extended-multiple-policies-out.yaml

                            filter: envoy.filters.http.jwt_authn
                            path:
                            - key: payload
                            - key: iss
                            value:
                              stringMatch:
                                exact: requestPrincipals1
                        - metadata:
                            filter: envoy.filters.http.jwt_authn
                            path:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. pilot/pkg/security/model/authentication.go

    	// in https://github.com/envoyproxy/envoy/blob/v1.9.1/source/extensions/filters/http/well_known_names.h#L48
    	EnvoyJwtFilterName = "envoy.filters.http.jwt_authn"
    )
    
    var SDSAdsConfig = &core.ConfigSource{
    	ConfigSourceSpecifier: &core.ConfigSource_Ads{
    		Ads: &core.AggregatedConfigSource{},
    	},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. pilot/pkg/xds/filters/filters.go

    	AuthnFilterName = "istio_authn"
    
    	// EnvoyJwtFilterName is the name of the Envoy JWT filter.
    	EnvoyJwtFilterName = "envoy.filters.http.jwt_authn"
    
    	// EnvoyJwtFilterPayload is the struct field for the payload in dynamic metadata in Envoy JWT filter.
    	EnvoyJwtFilterPayload = "payload"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 09:24:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. pilot/pkg/security/authn/policy_applier.go

    	"fmt"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	route "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	envoy_jwt "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/jwt_authn/v3"
    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    	tlsv3 "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tls/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. pilot/pkg/model/jwks_resolver.go

    	"sort"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	envoy_jwt "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/jwt_authn/v3"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/monitoring"
    )
    
    const (
    	// https://openid.net/specs/openid-connect-discovery-1_0.html
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/json_to_metadata/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/jwt_authn/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/kill_request/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/local_ratelimit/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/server.go

    		&authenticate.ClientCertAuthenticator{},
    	}
    	if args.JwtRule != "" {
    		jwtAuthn, err := initOIDC(args, s.environment.Watcher)
    		if err != nil {
    			return nil, fmt.Errorf("error initializing OIDC: %v", err)
    		}
    		if jwtAuthn == nil {
    			return nil, fmt.Errorf("JWT authenticator is nil")
    		}
    		authenticators = append(authenticators, jwtAuthn)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top