Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for authn_alpha (0.08 sec)

  1. pilot/pkg/security/authn/policy_applier_test.go

    						SkipValidateTrustDomain: true,
    						Policy: &authn_alpha.Policy{
    							Origins: []*authn_alpha.OriginAuthenticationMethod{
    								{
    									Jwt: &authn_alpha.Jwt{
    										Issuer: "https://secret.foo.com",
    									},
    								},
    							},
    							OriginIsOptional: true,
    							PrincipalBinding: authn_alpha.PrincipalBinding_USE_ORIGIN,
    						},
    					}),
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  2. pilot/pkg/security/authn/policy_applier.go

    	// choose from instead, rather than in authn config.
    	// nolint: staticcheck
    	p.PrincipalBinding = authn_alpha.PrincipalBinding_USE_ORIGIN
    	// nolint: staticcheck
    	for _, jwt := range a.processedJwtRules {
    		p.Origins = append(p.Origins, &authn_alpha.OriginAuthenticationMethod{
    			Jwt: &authn_alpha.Jwt{
    				// used for getting the filter data, and all other fields are irrelevant.
    				Issuer: jwt.GetIssuer(),
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top