
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
serverless-plugin-lambda-account-access-auth
Advanced tools
A Serverless plugin to allow other accounts to invoke your Lambda functions
Add policies and/or roles to allow cross-account access to your functions.
serverless.yml
service: sample
plugins:
- serverless-plugin-lambda-account-access
provider:
access:
groups:
authorizergroup: # group to hold authorizer connection with different AWS account
policy:
principals: apigateway.amazonaws.com
sourceArns:
- arn:aws:execute-api:000000000000:*/authorizers/* # allow api gateway to invoke functions
consumer: # group for cross-account lambda role access
policy:
principals: 000000000000 # consumer account ID
consumerService: 'my-service' # service name used to construct the role ARN
fns: # required when consumerService is specified
- function1 # list of function names from the consumer service
- function2
api: # group has both role and policy access configured
role:
- name: sample-${self:custom.stage}-lambda-api-${self:custom.region}
principals: # can be defined as a single value or an array
- 111111111111 # principal as accountId
- 'arn:aws:iam::222222222222:root' # principal as ARN
- Fn::Import: cloudformation-output-arn # principal as CloudFormation Output Value ARN
allowTagSession: True # can optionally be defined to include sts:TagSession in assume role policy
maxSessionDuration: 3600 # can optionally be defined to control max duration of an assume role session
policy:
principals:
- 333333333333
- 'arn:aws:iam::444444444444:root'
- Fn::Import: cloudformation-output-arn
other:
policy:
principals: 555555555555
functions:
function1: # access is not allowed
function2:
allowAccess: api # allow access for principals specified in api group only
function3:
allowAccess: # allow access for principals specified in both api and other
- api
- other
FAQs
A Serverless plugin to allow other accounts to invoke your Lambda functions
The npm package serverless-plugin-lambda-account-access-auth receives a total of 5 weekly downloads. As such, serverless-plugin-lambda-account-access-auth popularity was classified as not popular.
We found that serverless-plugin-lambda-account-access-auth demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.