Skip to content

Commit b1aa2c8

Browse files
committed
adjust prose
1 parent 15be2fa commit b1aa2c8

File tree

1 file changed

+5
-2
lines changed
  • src/pages/[platform]/build-a-backend/auth/manage-users/manage-passwords

1 file changed

+5
-2
lines changed

src/pages/[platform]/build-a-backend/auth/manage-users/manage-passwords/index.mdx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -512,14 +512,17 @@ export const auth = defineAuth({
512512
513513
## Override default password policy
514514
515-
You can customize the password format acceptable by your auth backend. By default your password policy is set to the following:
515+
By default your password policy is set to the following:
516516
517517
- `MinLength`: 8 characters
518518
- `requireLowercase`: true
519519
- `requireUppercase`: true
520-
- `requireDigits`: true
520+
- `requireNumbers`: true
521+
- `requireSymbols`: true
521522
- `tempPasswordValidity`: 3 days
522523
524+
You can customize the password format acceptable by your auth resource by modifying the underlying `cfnUserPool` resource:
525+
523526
```ts title="amplify/backend.ts"
524527
import { defineBackend } from '@aws-amplify/backend';
525528
import { auth } from './auth/resource';

0 commit comments

Comments
 (0)