Unable to login into Teams #159
Replies: 1 comment
-
The issue was there are not permission sets assigned to the management account. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I deployed TEAM as stated in the doco. The only change I made was in the cognito.sh where I replaced the lines:
aws cognito-idp update-user-pool-client --region $REGION --user-pool-id $cognitoUserpoolId
--client-id $clientID
--refresh-token-validity 1
--supported-identity-providers IDC
--allowed-o-auth-flows code
--allowed-o-auth-scopes "phone" "email" "openid" "profile" "aws.cognito.signin.user.admin"
--logout-urls $callbackUrl
--callback-urls $callbackUrl
--allowed-o-auth-flows-user-pool-client
to this:
aws cognito-idp update-user-pool-client --region $REGION --user-pool-id $cognitoUserpoolId
--client-id $clientID
--refresh-token-validity 1
--supported-identity-providers IDC
--allowed-o-auth-flows code
--allowed-o-auth-scopes "phone" "email" "openid" "profile" "aws.cognito.signin.user.admin"
*--callback-urls '["https://main.XXXX.amplifyapp.com"]'
--logout-urls '["https://main.XXXX.amplifyapp.com"]' *
--allowed-o-auth-flows-user-pool-client
When I login it doesn't take me beyond the amplify home page and I see this error in the developer tools console:


Any help appreciated.
Beta Was this translation helpful? Give feedback.
All reactions