gpt4 book ai didi

amazon-web-services - AWS 认知 : Restrict users to a single domain

转载 作者:行者123 更新时间:2023-12-01 22:27:14 25 4
gpt4 key购买 nike

我正在使用 cognito 联合登录,并将 google 作为身份提供商。要求是只允许我公司的用户(域名为xxx@mycompany.com)。

任何有关如何以及在何处配置此类规则的想法将不胜感激。或者请指出我正确的文档。

谢谢,

最佳答案

我能够通过 pre-signup lambda trigger 实现这一目标,找不到仅使用配置来限制访问的方法。

这是我的 lambda 函数代码

exports.handler = (event, context, callback) => {
console.log ("Trigger function =", event.triggerSource);

// Send post authentication data to Cloudwatch logs
if (event.request.userAttributes.email.endsWith('@mydomain.com')) {
console.log ("Authentication successful: ", event.request);
callback(null, event);
} else {
console.log ("Authentication failed: ", event.request);
callback("can't connect to admin", event)
}

};

关于amazon-web-services - AWS 认知 : Restrict users to a single domain,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40989649/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com