Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Coles (0.22 sec)

  1. cmd/sts-handlers.go

    func registerSTSRouter(router *mux.Router) {
    	// Initialize STS.
    	sts := &stsAPIHandlers{}
    
    	// STS Router
    	stsRouter := router.NewRoute().PathPrefix(SlashSeparator).Subrouter()
    
    	// Assume roles with no JWT, handles AssumeRole.
    	stsRouter.Methods(http.MethodPost).MatcherFunc(func(r *http.Request, rm *mux.RouteMatch) bool {
    		ctypeOk := wildcard.MatchSimple("application/x-www-form-urlencoded*", r.Header.Get(xhttp.ContentType))
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 18:36:18 GMT 2024
    - 34.7K bytes
    - Viewed (2)
  2. internal/config/identity/openid/openid.go

    			h.Reset()
    			h.Write([]byte(provCfg.ClientSecret))
    			hashedSecret = base64.RawURLEncoding.EncodeToString(h.Sum(nil))
    		}
    		if arn != DummyRoleARN {
    			if res.Roles == nil {
    				res.Roles = make(map[string]madmin.OpenIDProviderSettings)
    			}
    			res.Roles[arn.String()] = madmin.OpenIDProviderSettings{
    				ClaimUserinfoEnabled: provCfg.ClaimUserinfo,
    				RolePolicy:           provCfg.RolePolicy,
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Nov 16 04:42:31 GMT 2023
    - 16.5K bytes
    - Viewed (0)
Back to top