Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetSTSAndServiceAccounts (0.19 sec)

  1. cmd/iam-store.go

    		return err
    	}
    
    	return cache.updateUserWithClaims(accessKey, u)
    }
    
    // GetSTSAndServiceAccounts - returns all STS and Service account credentials.
    func (store *IAMStoreSys) GetSTSAndServiceAccounts() []auth.Credentials {
    	cache := store.rlock()
    	defer store.runlock()
    
    	var res []auth.Credentials
    	for _, u := range cache.iamUsersMap {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  2. cmd/iam.go

    func (sys *IAMSys) updateGroupMembershipsForLDAP(ctx context.Context) {
    	// 1. Collect all LDAP users with active creds.
    	allCreds := sys.store.GetSTSAndServiceAccounts()
    	// List of unique LDAP (parent) user DNs that have active creds
    	var parentUsers []string
    	// Map of LDAP user to list of active credential objects
    	parentUserToCredsMap := make(map[string][]auth.Credentials)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top