mirror of
https://github.com/minio/minio.git
synced 2025-11-09 13:39:46 -05:00
Reduce Minio access key minimum length to 3 (#5478)
This is a generic minimum value. The current reason is to support Azure blob storage accounts name whose length is less than 5. 3 is the minimum length for Azure.
This commit is contained in:
committed by
Nitish Tiwari
parent
2afd196c83
commit
da2faa19a1
@@ -25,7 +25,7 @@ import (
|
||||
|
||||
const (
|
||||
// Minimum length for Minio access key.
|
||||
accessKeyMinLen = 5
|
||||
accessKeyMinLen = 3
|
||||
|
||||
// Maximum length for Minio access key.
|
||||
// There is no max length enforcement for access keys
|
||||
|
||||
Reference in New Issue
Block a user