Beliebte Suchanfragen

Cloud Native

DevOps

IT-Security

Agile Methoden

Java

//

Non-Breaking Lambda Deployments for Alexa Skills using Versions and Aliases

14.6.2018 | 3 minutes of reading time

Let’s say we have a certified Amazon Alexa Skill that has an endpoint pointing to an AWS Lambda function. We want to update the Lambda function but the update contains breaking changes for the current live version of the Alexa Skill. It is necessary to update the Alexa Skill Model to work with the new Lambda function. As each change on the Alexa Skill Model needs to be certified by the Alexa Team – and this may take several days – we have a time gap where our existing live Skill would break if we deploy the new version of our Lambda function. How do we deploy the new Lambda code without risking that our skill is broken for the time of certification? In this tutorial I’m going to use Lambda Versions and Aliases to set up a non-breaking Lambda deployment strategy.

Using Versions for Lambda Deployments

Whenever new code is deployed to a Lambda function, the current one will be replaced. The only way to avoid this is using versions. When creating a version for a Lambda the current code and all configurations are frozen and cannot be modified any more. This is exactly what we need for our Alexa Skill endpoints.

To create a version go to your Lambda function in the AWS console and click on “Actions -> Publish new version”.

Each version gets a unique id starting from 1. When you push new code to the Lambda function it will be mapped to the predefined version $LATEST by default.

Note: You need to set the Alexa Skills Kit trigger again for the each created Lambda version.

You can reference the Lambda function with version 1 by adding the version to the Lambda ARN at the end:

arn:aws:lambda:eu-west-1:ACCOUNT_ID:function:FUNCTION_NAME:1

You can use this ARN in your Alexa Skill endpoint and you will never risk breaking your Lambda when pushing new changes.

You can find more information about versions in the AWS documentation: https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html

Using Aliases for flexibility

But wait, what if I want to fix a small bug in my Lambda and don’t want to recertify my Alexa Skill again? Remember, even changing only the endpoint of your Alexa Skill would mean a new certification roundtrip for the Skill as the endpoint is part of the Alexa Skill Model. To solve that problem the Lambda Aliases are a perfect solution. An Alias gives you the opportunity to point to a specific version of a Lambda and change the reference at any time.

To create an Alias go to “Actions -> Create alias” in your Lambda function:

In the following dialog specify the name of the Alias, i.e. PROD1 and which version the alias should reference.

Note: After creating the Alias you need to set the Alexa Skills Kit trigger for that Alias again. Otherwise the Alias cannot be used for the Alexa Skill endpoint.

The Alias can be referenced by adding the Alias name at the end of the Lambda ARN:

arn:aws:lambda:eu-west-1:ACCOUNT_ID:function:FUNCTION_NAME:PROD1

Create another Alias with the name PROD2 and point it to the version $LATEST. This is necessary if you want to certify a new Alexa Skill version. Whenever you are ready to certify a new Skill version you will create a new Lambda version and change the reference for the Alias PROD2 to this version and use the Alias PROD2 for the endpoint of your skill to be certified.

The Alias can be edited in the dropdown “Qualifiers -> Aliases”:

You need to rotate the aliases PROD1 and PROD2 for each certification process.

Summary

By using Lambda versions you can easily deploy new code to your Lambda function without breaking the current live Alexa Skill. You can even deploy bug fixes without the need to recertify the Skill when using Lambda Aliases. Here is an overview of the whole process:

By the way, you can use this strategy together with an API Gateway, too. There need to be two API Gateway endpoints that are pointing to the Lambda Aliases PROD1 and PROD2.

If you have any questions or new ideas, feel free to use the comment section below. Check out my last blog post where I explained how to quickly setup a Alexa Skill using AWS Codestar (https://blog.codecentric.de/2018/04/eine-pipeline-fuer-lambda-mit-aws-codestar-erstellen )

share post

Likes

0

//

More articles in this subject area

Discover exciting further topics and let the codecentric world inspire you.

//

Gemeinsam bessere Projekte umsetzen.

Wir helfen deinem Unternehmen.

Du stehst vor einer großen IT-Herausforderung? Wir sorgen für eine maßgeschneiderte Unterstützung. Informiere dich jetzt.

Hilf uns, noch besser zu werden.

Wir sind immer auf der Suche nach neuen Talenten. Auch für dich ist die passende Stelle dabei.