From 1ecc8d22d6efdc6c567208002e135217934338e9 Mon Sep 17 00:00:00 2001 From: Ekjot <43255916+ekjotmultani@users.noreply.github.com> Date: Fri, 3 Jan 2025 09:34:12 -0800 Subject: [PATCH] removed section on passwordless since flutter doesnt support it yet --- .../build-a-backend/auth/modify-resources-with-cdk/index.mdx | 3 +++ 1 file changed, 3 insertions(+) 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'); ``` +