Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cloudmonkey

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cloudmonkey - npm Package Compare versions

Comparing version 1.0.0-alpha.4 to 1.0.0-alpha.5

8

package.json
{
"name": "cloudmonkey",
"version": "1.0.0-alpha.4",
"version": "1.0.0-alpha.5",
"description": "Small infrastructure testing framework -- EXPERIMENTAL",

@@ -32,3 +32,3 @@ "main": "src/index.js",

"dependencies": {
"aws-sdk": "^2.205.0",
"aws-sdk": "^2.206.0",
"bluebird": "^3.5.1"

@@ -47,7 +47,7 @@ },

"eslint-plugin-should-promised": "^2.0.0",
"mocha": "^5.0.1",
"mocha": "^5.0.4",
"nyc": "^11.4.1",
"sinon": "^4.4.2",
"sinon-chai": "^2.14.0"
"sinon-chai": "^3.0.0"
}
}
# CloudMonkey
Small infrastructure testing framework -- **EXPERIMENTAL** -- use at your own risk!
Small infrastructure testing framework -- **EXPERIMENTAL**

@@ -18,3 +18,3 @@ The idea is to fill the gap between

[![Greenkeeper badge](https://badges.greenkeeper.io/frankthelen/cloudmonkey.svg)](https://greenkeeper.io/)
[![Maintainability](https://api.codeclimate.com/v1/badges/2b21f79b2657870c146f/maintainability)](https://codeclimate.com/github/frankthelen/cloudmonkey/maintainability)
[![Maintainability](https://api.codeclimate.com/v1/badges/520457acb01e31acc0a3/maintainability)](https://codeclimate.com/github/frankthelen/cloudmonkey/maintainability)
[![node](https://img.shields.io/node/v/cloudmonkey.svg)]()

@@ -21,0 +21,0 @@ [![code style](https://img.shields.io/badge/code_style-airbnb-brightgreen.svg)](https://github.com/airbnb/javascript)

@@ -10,11 +10,11 @@ const { CloudMonkey, EC2, S3 } = require('.');

try {
const instances = await monkey.select.all.ec2.instances({ vpc: 'vpc-5a207e32' });
// const igw = await monkey.select.one.ec2.internetGateway({ vpc: 'vpc-5a207e32' });
// const rt = await igw.travel.to.all.routeTables();
// const instances = await monkey.select.all.ec2.instances({ vpc: 'vpc-5a207e32' });
const igw = await monkey.select.one.ec2.internetGateway({ vpc: 'vpc-5a207e32' });
const rt = await igw.travel.to.all.routeTables();
// const rt = await monkey.select.all.ec2.routeTables();
// const sn = await rt.travel.to.all.subnets();
const sn = await rt.travel.to.all.subnets();
// const ins = await sn.travel.to.all.instances();
// const sn = await monkey.select.all.ec2.subnet();
// instances[0].dump();
const sn = await instances[0].travel.to.one.securityGroup();
// const sn = await instances[0].travel.to.one.securityGroup();
sn.dump();

@@ -21,0 +21,0 @@ } catch (err) {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc