Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for replicateKeyID (0.06 sec)

  1. internal/kms/config.go

    const (
    	tlsClientSessionCacheSize = 100
    )
    
    var replicateKeyID = sync.OnceValue(func() bool {
    	if v, ok := os.LookupEnv(EnvKMSReplicateKeyID); ok && strings.ToLower(v) == "off" {
    		return false
    	}
    	return true // by default, replicating KMS key IDs is enabled
    })
    
    // ReplicateKeyID reports whether KMS key IDs should be included when
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 15K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    		// always set the SSE-KMS header. If no KMS key ID is
    		// specified, MinIO is supposed to use whatever default
    		// config applies on the site or bucket.
    		var keyID string
    		if kms.ReplicateKeyID() {
    			keyID = objInfo.KMSKeyID()
    		}
    
    		sseEnc, err := encrypt.NewSSEKMS(keyID, nil)
    		if err != nil {
    			return putOpts, false, err
    		}
    		putOpts.ServerSideEncryption = sseEnc
    	}
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Sep 28 20:59:21 UTC 2025
    - 118.2K bytes
    - Viewed (0)
Back to top