Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@lumigo/serverless-crossaccount-ssm
Advanced tools
Serverless framework plugin to access the system and secrets managers at isolated account
Serverless framework plugin to access the system and secrets managers at isolated account.
Currently only AWS provider is supported.
Run npm install
in your Serverless project.
$ npm install --save-dev lumigo-serverless-crossaccount-ssm
Add the plugin to the top of the list at your serverless.yml
file
plugins:
- lumigo-serverless-crossaccount-ssm
# ...
In order to configure the account, use the custom.crossaccount-ssm
object:
custom:
crossaccount-ssm:
profile: PROFILE_NAME # for ssm references resolution
regions:
- us-east-1
- us-east-2 # failover replica
#...
The default config in a case if nothing provided:
custom:
crossaccount-ssm:
profile: default
regions:
- us-east-1
All variables are being resolved and set through the environment during Cloudformation template generation:
service:
name: client-demo
custom:
crossaccount-ssm:
profile: PROFILE
regions:
- MASTER_REGION
- FAILOVER_REGION_1
# ...
- FAILOVER_REGION_N
provider:
name: aws
region: us-east-1
functions:
client:
description: Isolated AWS SecretsManager' secrets client
handler: ...
environment:
CLIENT_SECRET: ${ssm:/aws/reference/secretsmanager/secret~true}
package:
include:
- ...
plugins:
- serverless-crossaccount-ssm
npm run test:all
FAQs
Serverless framework plugin to access the system and secrets managers at isolated account
The npm package @lumigo/serverless-crossaccount-ssm receives a total of 229 weekly downloads. As such, @lumigo/serverless-crossaccount-ssm popularity was classified as not popular.
We found that @lumigo/serverless-crossaccount-ssm demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.