Questions tagged [aws-userpools]

219 questions
6
votes
1 answer

AWS Cognito Hosted UI server IP address could not be found

I've been trying to setup my Cognito User pool and the hosted UI sign-in webpage following the documentation from https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-app-integration.html Followed the steps to the letter,…
6
votes
2 answers

AWS CloudFormation Script Fails - Cognito is not allowed to use your email identity

I am trying to build a CloudFormation script that sets up a Cognito User Pool and configures it to use a custom email for sending users their validation code in the signup process (i.e. FROM: noreply@mydomain.com). I am getting this error when…
6
votes
1 answer

Optional identifiers in cognito hosted UI do not work

I've been using SAML identity federation on my Userpool which has a hosted SignIn page. I configured both the Azure Active Directory and cognito userpool so I can log in with an AD user. I have added multiple SAML providers similar manner and that…
Manoj
  • 2,314
  • 2
  • 21
  • 36
5
votes
1 answer

How to use ses dedicated ips, if auto warm up is disabled?

I am using a dedicated ip for my ses region. But for some reasons I am not receiving mails from that dedicated ip. I have disabled the auto warm up process for my dedicated ip pool. As far as my understanding all the mails should go from the…
5
votes
0 answers

Prevent duplicate username from federated logins

I have Cognito setup with login supported from multiple identity providers (Cognito User Pools, Facebook, and Google). In my User Pool configuration I have email used as username. The desired functionality is to have username be unique across all…
5
votes
2 answers

aws identity pool filter list users api on multiple conditions

Is there a way to filter the result from list users api on multiple conditions. I want to get list of all users who have usernames from a list import boto3 client = boto3.client('cognito-idp') client.list_users(UserPoolId='us-east-1_123456789',…
4
votes
1 answer

Amazon Cognito: Login option is not available. Please try another one

I have a user pool set up with AWS Cognito to which I have added a SAML identity provider. I also have users added directly to the user pool. After following the documentation here I tried to log in via SP-initiated SSO. Cognito redirected me to the…
4
votes
0 answers

AWS Cognito user pools

I am using AWS Amplify for Flutter plugin to use Cognito for User authentication. When I executed amplify add auth followed by amplify push, a CloudFormation stack is created with several resources -including a User Pool and Identity pool.Two app…
ryandam
  • 684
  • 5
  • 13
4
votes
2 answers

Cyclic dependency terraform

I have a cyclic dependency problem with terraform. I have a user pool user_pool which invokes a lambda user_signup_lambda as a trigger when a user signs up. This lambda also needs the user pool's Id as an environment variable. My terraform looks…
4
votes
0 answers

Pagination in aws cognito get users

I am using user pool in AWS Cognito for creating users and authentication and authorization for the users of my java spring-boot application and I have written code to get users from Cognito and its working fine but I want to fetch users on…
its_vishal
  • 61
  • 6
4
votes
2 answers

How to attach Cognito Identity ID to the AWS IoT Policy?

I am trying to make a connection between AWS IoT and my React JS APP. I followed this tutorial (https://medium.com/serverlessguru/serverless-real-time-reactjs-app-aws-iot-mqtt-17d023954045), and it is not clear to me how to attach the Cognito…
4
votes
2 answers

cross account usage of AWS cognito user pool for signin

I have two AWS accounts, let's say 'master' and 'regional'. My 'master' account has used AWS Cognito and so it has created user-pool named as 'master-user-pool'. i.e. 'master-user-pool' belongs to 'master' AWS account. Now, I want all users of…
Tejaskumar
  • 754
  • 8
  • 24
4
votes
1 answer

How to Invoke cognito sign in page when trying to access resource in api gateway

I am trying to set up AWS API gateway in our env. I have created an api gateway with a resource and a cognito user pool for authentication. I created an app client in cognito and able to add users. But I am not clear on invoking the sign in page…
4
votes
1 answer

How to create user in user pool using social identity provider?

I want to login with social identity provider (Google) and after successful authentication , I need to pass Google Auth Token to Cognito User pool to create new user in it. Is it possible? If yes, How can we achieve it? I think below are…
VVB
  • 7,363
  • 7
  • 49
  • 83
4
votes
1 answer

Cannot update read/write attributes of UserPoolClient via C# SDK

When programmatically creating a Cognito user pool and app client, if the app client is to have read/write access to attributes of the user pool, that access must be explicitly given. I have been able to do so successfully for custom attributes but…
Fred
  • 381
  • 2
  • 13
1
2
3
14 15