From a57d02be8e005669510110afcee4ea2db580deee Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Wed, 8 Feb 2023 20:51:00 +0000 Subject: [PATCH] fix: increase generated password length resolve flake --- cli/usercreate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/usercreate.go b/cli/usercreate.go index dd65282202060..203686d6ff720 100644 --- a/cli/usercreate.go +++ b/cli/usercreate.go @@ -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 }