diff --git a/src/pages/[platform]/build-a-backend/auth/modify-resources-with-cdk/index.mdx b/src/pages/[platform]/build-a-backend/auth/modify-resources-with-cdk/index.mdx index 94b775153fd..df7143cec42 100644 --- a/src/pages/[platform]/build-a-backend/auth/modify-resources-with-cdk/index.mdx +++ b/src/pages/[platform]/build-a-backend/auth/modify-resources-with-cdk/index.mdx @@ -117,6 +117,8 @@ cfnUserPool.enabledMfas = [...(cfnUserPool.enabledMfas || []), "EMAIL_OTP"] {/* BYO custom idp construct */} {/* extend auth/unauth roles */} + + ### Override Cognito UserPool to enable passwordless sign-in methods You can modify the underlying Cognito user pool resource to enable sign in with passwordless methods. [Learn more about passwordless sign-in methods](/[platform]/build-a-backend/auth/concepts/passwordless/). @@ -146,3 +148,4 @@ cfnUserPoolClient.explicitAuthFlows = [ cfnUserPool.addPropertyOverride('WebAuthnRelyingPartyID', ''); cfnUserPool.addPropertyOverride('WebAuthnUserVerification', 'preferred'); ``` +