Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for resources (0.16 sec)

  1. internal/config/identity/plugin/config.go

    	}
    
    	resourceID := "idmp-"
    	roleID := env.Get(EnvIdentityPluginRoleID, kv.Get(RoleID))
    	if roleID == "" {
    		// We use a hash of the plugin URL so that the ARN remains
    		// constant across restarts.
    		h := sha1.New()
    		h.Write([]byte(pluginURL))
    		bs := h.Sum(nil)
    		resourceID += base64.RawURLEncoding.EncodeToString(bs)
    	} else {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 13.3K bytes
    - Viewed (3)
  2. internal/config/config.go

    // source of the value.
    type KVSrc struct {
    	Key   string
    	Value string
    	Src   ValueSource
    }
    
    // GetResolvedConfigParams returns all applicable config parameters with their
    // value sources.
    func (c Config) GetResolvedConfigParams(subSys, target string, redactSecrets bool) ([]KVSrc, error) {
    	if !resolvableSubsystems.Contains(subSys) {
    		return nil, Errorf("unsupported subsystem: %s", subSys)
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Mar 02 05:11:03 GMT 2024
    - 37.3K bytes
    - Viewed (0)
Back to top