1.0.2 • Published 10 years ago

cloudsheep v1.0.2

Weekly downloads
-
License
MIT
Repository
bitbucket
Last release
10 years ago

CloudSheep

A command-line tool for amazon cloud formation stack management

Installation

  $ [sudo] npm install -g cloudsheep

Configuration

Aws configuration needs to be present within the file .cloudsheep.aws.json within the current working directory containing aws credentials. Missing options will be asked for when running an action or options can be set by running the configure action.

{
    "accessKeyId": "<access-key>",
    "secretAccessKey": "<secret-access-key>",
    "region": "eu-west-1"
}

Usage

Using cloudsheep is relatively straight forward. The following actions can be performed.

Configure

Configure aws options.

  $ cloudsheep configure

Validate

Validate a given cloud formation template.

  $ cloudsheep validate <template.json>

Create

Create a stack given a cloud formation template. You will be prompted for parameters defined within the template.

  $ cloudsheep create <template.json>

Update

Update a stack given a cloud formation template. You will be prompted for parameters defined within the template.

  $ cloudsheep update <template.json>

Delete

Delete a stack given a stack name.

  $ cloudsheep delete <stack name>

Describe

Describe a stack given a stack name.

  $ cloudsheep describe <stack name>

Events

View events for a stack given a stack name.

  $ cloudsheep events <stack name>

List

List current stacks. Currently only lists successfully created stacks.

  $ cloudsheep list

License: MIT

Author: Ash Brown

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago

0.0.0

10 years ago