gulp-beanstalk-deploy
A gulp plugin for deployment your application to AWS Elastic Beanstalk
This plugin helps you to integrate your deployment task on the Amazon AWS Elasticbeanstalk service into gulp. Your deployment job will be more mainatainable and efficient, so that you can increase productivity.
Getting Started
You can install plugin by this command:
npm install gulp-beanstalk-deploy
Overview
gulp.task('deploy', function(cb) {
eb({
}, cb)
});
Options
A * indicates a mandatory option.
accessKeyId
- Type:
string
- Default:
~/.aws/credentials
The aws access key id. If nothing passwed, it will use your local aws profile credential.
secretAccessKey
- Type:
string
- Default:
~/.aws/credentials
The aws access secret access key. If nothing passwed, it will use your local aws profile credential.
region *
Your application region. It must be provided.
applicationName *
Your application name. It must be provided.
environmentName *
Your application enviroment name. It must be provided.
versionLabel
- Type:
string
- Default: sourceBundle file name without the extension
description
Your deployment description.
settings
Your environment setting parameters.
waitForDeploy
- Type:
boolean
- Default: true
checkIntervalSec
- Type:
number
- Default: 2sec
Interval time to check deploying status. (sec)
s3Bucket
{
bucket:
key:
}
sourceBundle *
archive file path to upload. It must exists in your local file system, which means the archive file must be prepared before deployment task.
tagsToAdd
[]
{'key': 'value' ...}
Tag to set.
tagsToRemove
[]
{'key': 'value' ...}
Tag to remove.
Usage Example
var gulp = require('gulp');
var eb = require('gulp-beanstalk-deploy');
gulp.task('deploy', function(cb) {
eb({
accessKeyId: 'Your AWS accessKeyId',
secretAccessKey: 'Your AWS secretAccessKey',
region: 'us-west-1',
applicationName:'gulp-beanstalk-deploy',
environmentName: 'gulp-beanstalk-deploy-env',
versionLabel: '1.0.0',
sourceBundle: './archive.zip',
description: 'description here',
account_id: 'Your AWS accountId',
tagsToAdd: {'key': 'value' ...},
tagsToRemove: {'Key': 'value' ...}
}, cb);
});
License
MIT