Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
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
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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.