/stacksup

StacksUp is a very small command line tool used to determine whether the instances of specified AWS Opsworks stacks are up and running.

Primary LanguageJavaScript

StacksUp

Small command line utility used to verify which of the instances in our AWS Opsworks stacks are up and running as expected.

It reads a very basic config file containing an array of stack ids and then determines and prints out the state of the instances linked to these stacks.

Below is an example of the config:

{
    "stack_ids": [
        "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
        "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
        "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
    ]
}

Below is an example of how to run the command:

node index.js ./stacksup.json

or if linked correctly:

stacksup ./stacksup.json

Below is an example of the output to be expected:

Example output from Stacksup