Skip to content

Commit 65ba32f

Browse files
Increase password requirements
Now needs more characters and requires at least 1 lowercase character and 1 number.
1 parent 06e9c9e commit 65ba32f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cloudformation/template.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -801,7 +801,9 @@ Resources:
801801
PreSignUp: !GetAtt CognitoUserPoolsConfirmationStrategyFunction.Arn
802802
Policies:
803803
PasswordPolicy:
804-
MinimumLength: 8
804+
MinimumLength: 12
805+
RequireLowercase: true
806+
RequireNumbers: true
805807
Schema:
806808
- AttributeDataType: String
807809
Name: email

0 commit comments

Comments
 (0)