The Admin Dashboard requires an administrator account created in Amazon Cognito. Follow these steps to access the dashboard for the first time.
Run the following AWS CLI command to create an admin account:
aws cognito-idp admin-create-user --user-pool-id <your-user-pool-id> --username <your-email> --user-attributes Name=email,Value=<your-email> Name=email_verified,Value=true --temporary-password "<your-temporary-password>" --region ap-northeast-1
Both the User Pool ID and the Admin Dashboard URL can be found in the outputs.json file generated after CDK deployment.
outputs.json fileAfter logging in, you should see the dashboard homepage with:

You can create additional admin users by repeating Step 1 with different email addresses.
Issue: Cannot login
Now you’re ready to use the Admin Dashboard to manage consultants and appointments!