New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

serverless-aws-lambda-architecture

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

serverless-aws-lambda-architecture

Enable Architectures for AWS Lambda to use ARM64 with Serverless 1.x+

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

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
    

Keywords

serverless

FAQs

Package last updated on 28 Feb 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts