1.0.0 • Published 2 years ago

serverless-aws-lambda-architecture v1.0.0

Weekly downloads
-
License
Apache2.0
Repository
github
Last release
2 years ago

Serverless AWS Lambda Architecture Plugin

serverless npm package Build Status Coverage Status Downloads

A Serverless 1.x-and-above plugin to add support for Lambda Architectures.

Motivation

Serverless 1.x doesn't have built-in support for the AWS Lambda architectures property. This plugin adds support.

Installation

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.

Usage

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