Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for GetRoleInfo (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. internal/config/identity/openid/openid.go

    	}
    	for _, v := range r.arnProviderCfgsMap {
    		if v.provider != nil {
    			return true
    		}
    	}
    	return false
    }
    
    // GetRoleInfo - returns ARN to policies map if a role policy based openID
    // provider is configured. Otherwise returns nil.
    func (r Config) GetRoleInfo() map[arn.ARN]string {
    	for _, p := range r.arnProviderCfgsMap {
    		if p.RolePolicy != "" {
    			return r.roleArnPolicyMap
    		}
    	}
    	return nil
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 17.3K bytes
    - Click Count (0)
Back to Top