Skip to content

Commit

Permalink
Make generated password 32 chars
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
michaelsauter authored Jan 6, 2023
1 parent 6062208 commit 07bb6c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ installSecret () {
read -rs authPassword
else
authUser=''
authPassword=$(LC_ALL=C tr -dc 'A-Za-z0-9#%*+\-<=>_{|}' </dev/urandom | head -c 20 ; echo)
authPassword=$(LC_ALL=C tr -dc 'A-Za-z0-9#%*+\-<=>_{|}' </dev/urandom | head -c 32 ; echo)
fi
fi
echo "Creating secret ${secretName} ..."
Expand Down

0 comments on commit 07bb6c3

Please sign in to comment.