fix: increase generated password length resolve flake (#6116)

This commit is contained in:
Kyle Carberry 2023-02-08 14:59:07 -06:00 committed by GitHub
parent d803bb76d5
commit 4827d9edb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ func userCreate() *cobra.Command {
}
}
if password == "" {
password, err = cryptorand.StringCharset(cryptorand.Human, 12)
password, err = cryptorand.StringCharset(cryptorand.Human, 20)
if err != nil {
return err
}