gpt4 book ai didi

amazon-web-services - Lambda 和 DynamoDB : is not authorized to perform: dynamodb:Scan

转载 作者:行者123 更新时间:2023-12-04 08:10:40 26 4
gpt4 key购买 nike

我已经使用无服务器创建了 API,在将 API 部署到 lambda 之后,我们尝试通过 GatewayAPI 中的“测试”按钮测试端点,但出现错误:

"User: arn:aws:sts::245912153055:assumed-role/pets-service-dev-us-east-1-lambdaRole/pets-service-dev-listPets is not authorized to perform: dynamodb:Scan on resource: arn:aws:dynamodb:us-east-1:245912153055:table/Pets"



我可能需要向 Lambda 授予权限,但我有点迷茫......

最佳答案

如前所述,您需要向无服务器定义添加权限。

关于这个主题的文档非常广泛:
serverless IAM guide

在您的情况下,您可能只需要向 serverless.yml 添加类似以下权限的内容。

provider:
iamRoleStatements:
- Effect: "Allow"
Action:
- "dynamodb:Scan"
Resource: "arn:aws:dynamodb:us-east-1:245912153055:table/Pets"

关于amazon-web-services - Lambda 和 DynamoDB : is not authorized to perform: dynamodb:Scan,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42602798/

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