A Good Enough offline emulator for Amazon Cognito.
- Supported Features
- Usage
- Configuration
- Known Limitations
- Multi-factor authentication
- Confirmation codes
Feature | Support |
---|---|
AddCustomAttributes | โ |
AdminAddUserToGroup | โ |
AdminConfirmSignUp | ๐ (partial support) |
AdminCreateUser | ๐ (partial support) |
AdminDeleteUser | โ |
AdminDeleteUserAttributes | โ |
AdminDisableProviderForUser | โ |
AdminDisableUser | โ |
AdminEnableUser | โ |
AdminForgetDevice | โ |
AdminGetDevice | โ |
AdminGetUser | โ |
AdminInitiateAuth | โ |
AdminLinkProviderForUser | โ |
AdminListDevices | โ |
AdminListGroupsForUser | โ |
AdminListUserAuthEvents | โ |
AdminRemoveUserFromGroup | โ |
AdminResetUserPassword | โ |
AdminRespondToAuthChallenge | โ |
AdminSetUserMFAPreference | โ |
AdminSetUserPassword | โ |
AdminSetUserSettings | โ |
AdminUpdateAuthEventFeedback | โ |
AdminUpdateDeviceStatus | โ |
AdminUpdateUserAttributes | ๐ (partial support) |
AdminUserGlobalSignOut | โ |
AssociateSoftwareToken | โ |
ChangePassword | ๐ (partial support) |
ConfirmDevice | โ |
ConfirmForgotPassword | ๐ (partial support) |
ConfirmSignUp | ๐ (partial support) |
CreateGroup | โ |
CreateIdentityProvider | โ |
CreateResourceServer | โ |
CreateUserImportJob | โ |
CreateUserPool | โ |
CreateUserPoolClient | ๐ (partial support) |
CreateUserPoolDomain | โ |
DeleteGroup | โ |
DeleteIdentityProvider | โ |
DeleteResourceServer | โ |
DeleteUser | โ |
DeleteUserAttributes | โ |
DeleteUserPool | โ |
DeleteUserPoolClient | โ |
DeleteUserPoolDomain | โ |
DescribeIdentityProvider | โ |
DescribeResourceServer | โ |
DescribeRiskConfiguration | โ |
DescribeUserImportJob | โ |
DescribeUserPool | โ |
DescribeUserPoolClient | โ |
DescribeUserPoolDomain | โ |
ForgetDevice | โ |
ForgotPassword | ๐ (partial support) |
GetCSVHeader | โ |
GetDevice | โ |
GetGroup | โ |
GetIdentityProviderByIdentifier | โ |
GetSigningCertificate | โ |
GetUICustomization | โ |
GetUser | โ |
GetUserAttributeVerificationCode | โ |
GetUserPoolMfaConfig | โ |
GlobalSignOut | โ |
InitiateAuth | ๐ (partial support) |
ListDevices | โ |
ListGroups | โ ยน |
ListIdentityProviders | โ |
ListResourceServers | โ |
ListTagsForResource | โ |
ListUserImportJobs | โ |
ListUserPoolClients | โ |
ListUserPools | โ ยน |
ListUsers | โ ยน |
ListUsersInGroup | โ |
ResendConfirmationCode | โ |
RespondToAuthChallenge | ๐ (partial support) |
RevokeToken | โ |
SetRiskConfiguration | โ |
SetUICustomization | โ |
SetUserMFAPreference | โ |
SetUserPoolMfaConfig | โ |
SetUserSettings | โ |
SignUp | ๐ (partial support) |
StartUserImportJob | โ |
StopUserImportJob | โ |
TagResource | โ |
UntagResource | โ |
UpdateAuthEventFeedback | โ |
UpdateDeviceStatus | โ |
UpdateGroup | โ |
UpdateIdentityProvider | โ |
UpdateResourceServer | โ |
UpdateUserAttributes | โ |
UpdateUserPool | โ |
UpdateUserPoolClient | โ |
UpdateUserPoolDomain | โ |
VerifySoftwareToken | โ |
VerifyUserAttribute | โ |
ยน does not support pagination or query filters, all results and attributes will be returned in the first request.
Additional supported features:
- JWKs verification
cognito-local can emulate Cognito's Lambda Triggers
by either invoking a real Lambda in an AWS account or a Lambda running on your local machine (via any tool which
supports the LambdaInvoke
functionality, for example
serverless-offline).
To configure a Lambda Trigger, modify your configuration file to include a TriggerFunctions
object
with a key for the Trigger and the value as your Lambda function name.
{
"TriggerFunctions": {
"CustomMessage": "my-function-name"
}
}
If you're using local invoke, you will also need to modify the LambdaClient.endpoint
configuration to tell
cognito-local how to connect to your local Lambda server:
{
"LambdaClient": {
"endpoint": "http://host:port"
},
"TriggerFunctions": {
"CustomMessage": "my-local-function-name"
}
}
If you're running cognito-local in Docker and your local Lambda functions on your host, you may need to use the Docker local networking hostname as your endpoint. For example, on my Mac I use
http://host.docker.internal:3002
.
Trigger | Operation | Support |
---|---|---|
CreateAuthChallenge | * | โ |
CustomEmailSender | * | โ |
CustomMessage | AdminCreateUser | โ |
CustomMessage | Authentication | โ |
CustomMessage | ForgotPassword | โ |
CustomMessage | ResendCode | โ |
CustomMessage | SignUp | โ |
CustomMessage | UpdateUserAttribute | โ |
CustomMessage | VerifyUserAttribute | โ |
DefineAuthChallenge | * | โ |
PostAuthentication | PostAuthentication_Authentication | โ |
PostConfirmation | ConfirmForgotPassword | โ |
PostConfirmation | ConfirmSignUp | โ |
PreAuthentication | * | โ |
PreSignUp | * | โ |
PreTokenGeneration | * | โ |
UserMigration | Authentication | โ |
UserMigration | ForgotPassword | โ |
VerifyAuthChallengeResponse | * | โ |
- Incomplete support for triggers
- Triggers can only be configured globally and not per-pool
docker run --publish 9229:9229 jagregory/cognito-local:latest
Cognito Local will now be listening on http://localhost:9229
.
To persist your database between runs, mount the /app/.cognito
volume to your host machine:
docker run --publish 9229:9229 --volume $(pwd)/.cognito:/app/.cognito jagregory/cognito-local:latest
npm install --save-dev cognito-local
yarn add --dev cognito-local
# if node_modules/.bin is in your $PATH
cognito-local
# OR
yarn cognito-local
# OR
npx cognito-local
Cognito Local will now be listening on http://localhost:9229
.
cognito-local runs on port 9229
by default. If you would like to use a different port, you can set the PORT
environment variable:
PORT=4000 cognito-local
If you're running in Docker, you can also rebind the published ports when you run:
docker run -p4000:9229 jagregory/cognito-local
Or combine the two approaches by setting an environment variable when you run:
docker run -p4000:4000 -e PORT=4000 jagregory/cognito-local
The same can be done in docker-compose with environment variables and port binding in compose.
You will need to update your AWS code to use the local address for Cognito's endpoint. For example, if you're using
amazon-cognito-identity-js you can update your CognitoUserPool
usage to override the endpoint:
new CognitoUserPool({
/* ... normal options ... */
endpoint: "http://localhost:9229/",
});
You only want to do this when you're running locally on your development machine.
You do not need to supply a config unless you need to customise the behaviour of Congito Local. If you are using Lambda
triggers with local Lambdas, you will definitely need to override LambdaClient.endpoint
at a minimum.
Before starting Cognito Local, create a config file:
mkdir .cognito && echo '{}' > .cognito/config.json
You can edit that .cognito/config.json
and add any of the following settings:
Setting | Type | Default | Description |
---|---|---|---|
LambdaClient |
object |
Any setting you would pass to the AWS.Lambda Node.js client | |
LambdaClient.credentials.accessKeyId |
string |
local |
|
LambdaClient.credentials.secretAccessKey |
string |
local |
|
LambdaClient.endpoint |
string |
local |
|
LambdaClient.region |
string |
local |
|
TokenConfig.IssuerDomain |
string |
http://localhost:9229 |
Issuer domain override |
TriggerFunctions |
object |
{} |
Trigger name to Function name mapping |
TriggerFunctions.CustomMessage |
string |
CustomMessage lambda name | |
TriggerFunctions.PostConfirmation |
string |
PostConfirmation lambda name | |
TriggerFunctions.UserMigration |
string |
UserMigration lambda name | |
UserPoolDefaults |
object |
Default behaviour to use for the User Pool | |
UserPoolDefaults.Id |
string |
local |
Default User Pool Id |
UserPoolDefaults.MfaConfiguration |
string |
MFA type | |
UserPoolDefaults.UsernameAttributes |
string[] |
["email"] |
Username alias attributes |
The default config is:
{
"LambdaClient": {
"credentials": {
"accessKeyId": "local",
"secretAccessKey": "local"
},
"region": "local"
},
"TokenConfig": {
"IssuerDomain": "http://localhost:9229"
},
"TriggerFunctions": {},
"UserPoolDefaults": {
"Id": "local",
"UsernameAttributes": ["email"]
}
}
If you need your Lambda endpoint to be HTTPS with a self-signed certificate, you will need to disable certificate
verification in Node for Cognito Local. The easiest way to do this is to run Cognito Local with the
NODE_TLS_REJECT_UNAUTHORIZED
environment variable.
NODE_TLS_REJECT_UNAUTHORIZED=0 cognito-local
docker run --env NODE_TLS_REJECT_UNAUTHORIZED=0 ...
User Pools are stored in .cognito/db/$userPoolId.json
. As not all API features are supported yet, you'll likely find
yourself needing to manually edit this file to update the User Pool config or users. If you do modify this file, you
will need to restart Cognito Local.
User Pool Clients are stored in .cognito/db/clients.json
. You can create new User Pool Clients using the
CreateUserPoolClient
API.
- Many features are missing
- Users can't be disabled
- Only
USER_PASSWORD_AUTH
flow is supported - Not all Lambda triggers are supported
There is limited support for Multi-Factor Authentication in Cognito Local. Currently, if a User Pool is configured to
have a MfaConfiguration
of OPTIONAL
or ON
and a user has an MFAOption
of SMS
then Cognito Local will
follow the MFA flows. If a user does not have a phone_number
attribute or any other type of MFA is used, Cognito Local
will fail.
When a user is prompted for a code of some kind (confirming their account, multi-factor auth), Cognito Local will write a message to the console with their confirmation code instead of emailing it to the user.
For example:
โญโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ โ
โ Confirmation Code Delivery โ
โ โ
โ Username: c63651ae-59c6-4ede-ae7d-a8400ff65e8d โ
โ Destination: [email protected] โ
โ Code: 3520 โ
โ โ
โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
If a Custom Message lambda is configured, the output of the function invocation will be printed in the console too (verbosely!).