If you want to generate the custom secrets values you can do this right from your console using a simple command.
You can use the openssl command (commonly available on many Unix-based systems) combined with tr and head commands. Here's how you can do it for each of your requirements:
# For UI_BAKERY_JWT_SECRETopensslrand-base64100|tr-dc'A-Z0-9'|head-c42; echo# For UI_BAKERY_JWT_SERVICE_ACCOUNT_SECRETopensslrand-base64100|tr-dc'A-Z0-9'|head-c55; echo# For UI_BAKERY_JWT_REFRESH_SECRETopensslrand-base64100|tr-dc'A-Z0-9'|head-c42; echo# For UI_BAKERY_CREDENTIALS_SECRETopensslrand-base64100|tr-dc'A-Z0-9'|head-c32; echo# For UI_BAKERY_MFA_SECRETopensslrand-base64100|tr-dc'A-Z0-9'|head-c32; echo
Alternatively, you can use urandom to generate the secrets:
# For UI_BAKERY_JWT_SECRETecho $(LC_ALL=Ctr-cd"A-Za-z0-9"</dev/urandom|head-c42|xargs-0)# For UI_BAKERY_JWT_SERVICE_ACCOUNT_SECRETecho $(LC_ALL=Ctr-cd"A-Za-z0-9"</dev/urandom|head-c55|xargs-0)# For UI_BAKERY_JWT_REFRESH_SECRETecho $(LC_ALL=Ctr-cd"A-Za-z0-9"</dev/urandom|head-c42|xargs-0)# For UI_BAKERY_CREDENTIALS_SECRETecho $(LC_ALL=Ctr-cd"A-Za-z0-9"</dev/urandom|head-c32|xargs-0)# For UI_BAKERY_MFA_SECRETecho $(LC_ALL=Ctr-cd"A-Za-z0-9"</dev/urandom|head-c32|xargs-0)