- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for LookupEnv (0.04 sec)
-
internal/kms/config.go
// but can be turned off. const EnvKMSReplicateKeyID = "MINIO_KMS_REPLICATE_KEYID" 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) -
cmd/config-current.go
return err } } return nil } func lookupConfigs(s config.Config, objAPI ObjectLayer) { ctx := GlobalContext dnsURL, dnsUser, dnsPass, err := env.LookupEnv(config.EnvDNSWebhook) if err != nil { configLogIf(ctx, fmt.Errorf("Unable to initialize remote webhook DNS config %w", err)) } if err == nil && dnsURL != "" {
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 28.5K bytes - Viewed (0)