auto update AWS Lambda Application with lambda referencing layer

0

I have a the following template.yml configs referencing a layer.

Resources:
  helloFromLambdaFunction:
    Type: AWS::Serverless::Function
    Properties:
      Layers:
        - arn:aws:lambda:us-east-2:xxxxxxxxx:layer:matchmaking-lobby:63

I have many lambda apps referencing the same layer. Whenever I make changes to this layer I need to manually update each lambda app. I've tried replacing the version number with $LATEST, but that doesn't work. Is there anyway to have the lambdas pull the latest version of the layer?

已提问 2 年前842 查看次数
1 回答
1
已接受的回答

This behavior isn't possible with CloudFormation. The reason is that referring to $LATEST cannot guarantee a reproducible state for your stack.

Suppose you performed a successful deployment. Then, after the deployment, the latest version of your Lambda Layer changed. Later, you attempt a new deployment that fails. If this happens, CloudFormation will then attempt to revert to the previous known good state. To revert to that known state, CloudFormation needs the specific version number of the Lambda Layer. That's why the specific version number needs to be in the stack template.

Many customers overcome this limitation by including the layer itself in the stack template (via AWS::Lambda::LayerVersion) and making a reference to it. Otherwise, you can do things like put placeholders like $LAYER_VERSION into your CloudFormation YAML template, and substitute the value of the Lambda version into it after you upload it using an external program such as envsubst, before updating the stack with the rendered template.

AWS
专家
已回答 2 年前
  • I had my RetentionPolicy setting for the layer set to delete originally, and that caused the stack to get stuck because it couldn't reproduce it's previous state like you were talking about. I'll look into merging these separate lambda applications into one big application or maybe writing some sort of aws cli script that would increment the version number across the different lambda projects or just getting rid of the layer and moving the logic to another lambda instead.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则