gpt4 book ai didi

aws-lambda - 如何使用适用于 AWS Lambda 的无服务器框架获取最新的层版本

转载 作者:行者123 更新时间:2023-12-04 09:49:21 25 4
gpt4 key购买 nike

我正在尝试通过使用 serverless-latest-layer-version 使用无服务器框架获取最新的层版本插入。该插件本身可以获得最新版本的图层,但问题是每当我为图层和功能进行新部署时,图层版本总是显示新图层版本的前一个版本。下面是用于获取最新版本并将其应用到功能中的 serverless.yml。帮我建议我错过的任何配置到最新层版本的东西?

layers:
my-layers:
path: my-layers
name: ${opt:stage, 'development'}-my-layer
description: Save all common npm dependencies in single project
compatibleRuntimes:
- nodejs10.x

functions:
app:
handler: index.handler
layers:
- arn:aws:lambda:ap-southeast-1:#{AWS::AccountId}:layer:${opt:stage, 'development'}-my-layer:latest

最佳答案

我认为您可以使用 CloudFormationRef。请参阅无服务器 ( https://www.serverless.com/framework/docs/providers/aws/guide/layers/ ) 上的文档:

To use a layer with a function in the same service, use a CloudFormation Ref. The name of your layer in the CloudFormation template will be your layer name TitleCased (without spaces) and have LambdaLayer appended to the end. EG:


layers:
test:
path: layer
functions:
hello:
handler: handler.hello
layers:
- { Ref: TestLambdaLayer }

关于aws-lambda - 如何使用适用于 AWS Lambda 的无服务器框架获取最新的层版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62035220/

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