serverless-aws-lambda-architecture

1.0.0 • Public • Published

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
    

Package Sidebar

Install

npm i serverless-aws-lambda-architecture

Weekly Downloads

2

Version

1.0.0

License

Apache2.0

Unpacked Size

40.8 kB

Total Files

18

Last publish

Collaborators

  • u_glow