Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
gulp-aws-eb-environment
Advanced tools
Plugin to change the environment variables on Elastic Beanstalk (AWS)
The idea is that we may be able to manipulate the environment variables on
EB
. I believe this plugin can help in some workflows and pipelines of continuous integration.
npm
npm install gulp-aws-eb-environment --save-dev
'use strict';
var ebEnvironment = require('gulp-aws-eb-environment');
gulp.task('aws:eb:setEnv', function() {
var envs = ebEnvironment.create({
region: process.env['AWS_REGION'],
accessKeyId: process.env['AWS_ACCESS_KEY_ID'],
secretAccessKey: process.env['AWS_SECRET_ACCESS_KEY']
});
return envs.setEnv({
application: {
name: 'eb-application-name'
},
// Find the environment by canonical name inside of `application.name`
cname: 'eb-cname.elasticbeanstalk.com',
// environment variable
environment: {
name: 'TEST',
value: '123'
}
});
});
FAQs
Plugin to change the environment variables on Elastic Beanstalk (AWS)
We found that gulp-aws-eb-environment demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.