Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for url (0.13 sec)

  1. internal/config/policy/opa/legacy.go

    )
    
    // Legacy OPA envs
    const (
    	EnvIamOpaURL       = "MINIO_IAM_OPA_URL"
    	EnvIamOpaAuthToken = "MINIO_IAM_OPA_AUTHTOKEN"
    )
    
    // SetPolicyOPAConfig - One time migration code needed, for migrating from older config to new for PolicyOPAConfig.
    func SetPolicyOPAConfig(s config.Config, opaArgs Args) {
    	if opaArgs.URL == nil || opaArgs.URL.String() == "" {
    		// Do not enable if opaArgs was empty.
    		return
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 1.4K bytes
    - Viewed (0)
  2. internal/config/notify/legacy.go

    		return err
    	}
    
    	s[config.NotifyAMQPSubSys][amqpName] = config.KVS{
    		config.KV{
    			Key:   config.Enable,
    			Value: config.EnableOn,
    		},
    		config.KV{
    			Key:   target.AmqpURL,
    			Value: cfg.URL.String(),
    		},
    		config.KV{
    			Key:   target.AmqpExchange,
    			Value: cfg.Exchange,
    		},
    		config.KV{
    			Key:   target.AmqpRoutingKey,
    			Value: cfg.RoutingKey,
    		},
    		config.KV{
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Mar 19 04:37:54 GMT 2024
    - 13.1K bytes
    - Viewed (0)
Back to top