1.0.1 • Published 1 year ago

ember-cli-deploy-opsworks v1.0.1

Weekly downloads
25
License
MIT
Repository
github
Last release
1 year ago

ember-cli-deploy-opsworks

An ember-cli-plugin to create an AWS OpsWorks deployment

npm CI

This ember-cli-deploy plugin is no longer maintained. If you'd like to take it over, ping me and I'll transfer ownership.

What is an ember-cli-deploy plugin?

A plugin is an addon that can be executed as a part of the ember-cli-deploy pipeline. A plugin will implement one or more of the ember-cli-deploy's pipeline hooks.

For more information on what plugins are and how they work, please refer to the Plugin Documentation.

Quick Start

To get up and running quickly, do the following:

$ ember install ember-cli-deploy-opsworks
  • Run the pipeline
$ ember deploy

ember-cli-deploy Hooks Implemented

For detailed information on what plugin hooks are and how they work, please refer to the Plugin Documentation.

  • activate

Configuration Options

For detailed information on how configuration of plugins works, please refer to the Plugin Documentation.

Place the following configuration into config/deploy.js;

ENV.opsworks = {
  stackId: process.env.AWS_STACK_ID,
  appId: process.env.AWS_APP_ID,
  accessKeyId: process.env.AWS_KEY,
  secretAccessKey: process.env.AWS_SECRET
}