A Serverless 1.x-and-above plugin to add support for AWS Lambda instruction set architectures.
Serverless 1.x doesn't have built-in support for the AWS Lambda architectures property. This plugin adds support.
npm install --save-dev serverless-aws-lambda-architecture
Add the plugin to serverless.yml:
plugins:
- serverless-aws-lambda-architecture
Note: Node 10.x or higher runtime required.
Inside your Serverless config, include the architectures: arm64
property against the Lambda function(s) you wish to
use this architecture with.
plugins:
- serverless-aws-lambda-architecture
...
functions:
x86ArchFunction:
handler: handler
description: "Uses the default Lambda architecture"
arm64Function:
handler: handler
description: "Uses the ARM64 architecture"
architectures:
- arm64