From 7ce007b595909ee53e2c6041f4f1a83bf1603028 Mon Sep 17 00:00:00 2001 From: Pedro Cerejo Date: Wed, 27 Dec 2023 10:29:41 +0000 Subject: [PATCH] Update passwordMinLength description --- src/supabase-stack.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/supabase-stack.ts b/src/supabase-stack.ts index dfe2c9e..daa9340 100644 --- a/src/supabase-stack.ts +++ b/src/supabase-stack.ts @@ -73,7 +73,7 @@ export class SupabaseStack extends FargateStack { }); const passwordMinLength = new cdk.CfnParameter(this, 'PasswordMinLength', { - description: 'When signup is disabled the only way to create new users is through invites. Defaults to false, all signups enabled.', + description: 'Minimum password length. Defaults to 8 (the minimum is also 8), maximum 128 chars.', type: 'Number', default: '8', minValue: 8,