JSPM

gulp-elastic-beanstalk-deploy

0.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 75
  • Score
    100M100P100Q71308F
  • License MIT

A Gulp module for deploying to AWS Elastic Beanstalk

Package Exports

  • gulp-elastic-beanstalk-deploy

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-elastic-beanstalk-deploy) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

gulp-elastic-beanstalk-deploy

A Gulp module for deploying 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.

Based on gulp-beanstalk-deploy by SeungJae Lee.

Getting Started

You can install plugin by this command:

npm install gulp-elastic-beanstalk-deploy

Overview

gulp.task('deploy', function(cb) {
  eb({
    // options here
  }, 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 *
  • Type: string

Your application region. It must be provided.

applicationName *
  • Type: string

Your application name. It must be provided.

environmentName *
  • Type: string

Your application enviroment name. It must be provided.

versionLabel
  • Type: string
  • Default: sourceBundle file name without the extension
description
  • Type: string

Your deployment description.

settings
  • Type: Array

Your environment setting parameters.

waitForDeploy
  • Type: boolean
  • Default: true
checkIntervalSec
  • Type: number
  • Default: 2sec

Interval time to check deploying status. (sec)

s3Bucket
  • Type: object
  • Default:
{
    bucket: // applicationName
    key: // sourceBundle basename
}
sourceBundle *
  • Type: string

archive file path to upload. It must exists in your local file system, which means the archive file must be prepared before deployment task.

Usage Example

var gulp = require('gulp');
var eb = require('gulp-elastic-beanstalk-deploy');

gulp.task('deploy', function(cb) {
  eb({
    accessKeyId: 'Your AWS accessKeyId', // optional
    secretAccessKey: 'Your AWS secretAccessKey', // optional
    region: 'us-west-1', // required
    applicationName:'gulp-elastic-beanstalk-deploy',
    environmentName: 'gulp-elastic-beanstalk-deploy-env',
    versionLabel: '1.0.0',
    sourceBundle: './archive.zip',
    description: 'description here'
  }, cb);
});

License

MIT