Can you export/migrate users out of AWS cognito, does it cause vendor lock-in?

爱⌒轻易说出口 提交于 2019-12-02 18:00:21
Jeff Bailey

At this point in time, Cognito does not allow a way to export users from a user pool. We have heard this request from other customers, though, and have prioritized it for future releases.

As far as passwords go, Cognito uses secure remote password protocol to do the actual authentications, so the metadata that could come out may not be particularly useful, if it was included at all.

Considering Amazon still haven't updated their answer, here's a workaround (to augment the accepted answer):

Try npmjs.com/package/cognito-backup-restore.

nb. I haven't tested this package.

Then:

  1. Build your replacement auth system
  2. At login, test authenticating with your new system
  3. Try to authenticate with Cognito
  4. If Cognito succeed, import user's details to your new system
  5. Require a password update with your new system

source: forums.aws.amazon.com/thread.jspa?threadID=240242

Cognito actually has the capability to import users using CSV files, however no export functionality is available ( unless you List Users and write to a CSV )

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!