我是无服务器和 lambda 新手
我正在尝试将我的无服务器功能部署到 AWS,但它显示此错误:
这是我的 serverless.yml 文件:
service: aws-node-http-api-project
frameworkVersion: "3"
provider:
name: aws
runtime: nodejs12.x
region: ap-southeast-1
functions:
hello:
handler: handler.hello
events:
- httpApi:
path: /
method: get
我已设置 AWS CLI 和 IAM 用户。
堆栈已创建,但变更集未能执行,因此堆栈停留在 REVIEW_IN_PROGRESS 状态。