
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
gulp-elb-deploy
Advanced tools
Gulp plugin for deploying AWS Elastic Beanstalk applications
This is inspired by this other projects gulp-beanstalk-deploy by SeungJae Lee and gulp-elasticbeanstalk-deploy by Juan José Herrero Barbosa.
A plugin devloped in Typescript that helps you deploy your applications to AWS Elastic Beanstalk
services easily using Gulp.
You can install this plugin by running this command on the terminal
$ npm install gulp-elb-deploy
import gulp from "gulp",
import eb_deploy from "gulp-elb-deploy";
gulp.task("deploy", function () {
return gulp
.src(["<application-directory-path>"], {
base: "./",
nodir: true,
})
.pipe(
eb_deploy({
version: "APPLICATION_VERSION",
timestamp: true,
waitForDeploy: true,
accessKeyId: "AWS_ACCESS_KEY",
secretAccessKey: "AWS_SECRET_KEY",
signatureVersion: "AWS_ENVIRONMENT_VERSION",
region: "AWS_ENVIRONMENT_REGION",
bucket: "AWS_ENVIRONMENT_S3_BUCKET",
applicationName: "AWS_ELASTIC_BEANSTALK_APPLICATION_NAME",
environmentName: "AWS_ELASTIC_BEANSTALK_ENVIRONMENT_NAME",
})
);
});
string
package.json version
The version that will be used on the filename for the .zip
file
string
false
Determine whether the filename will contain a time and date
string
false
Determine whether to wait for the upload to finish
string
~/.aws/credentials
The access key
provided by AWS associated with the IAM user or AWS account. How do I create an AWS access key?.
string
~/.aws/credentials
The secret key
provided by AWS associated with the IAM user or AWS account. How do I create an AWS scret key?.
string
v4
Version of AWS requests
string
AWS application region. See AWS service endpoints.
string
The name of an AWS application associated with the IAM user or AWS account. See AWS application name
string
The name of an AWS environment associated with your application. See AWS CreateEnvironment
string
The name of an AWS S3 bucket associated with your Elastic Beanstalk. See Elastic Beanstalk with Amazon S3
MIT
FAQs
Simple Gulp plugin for deploying AWS Elastic Beanstalk
We found that gulp-elb-deploy 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.