Skip to content

Latest commit

 

History

History
54 lines (34 loc) · 1.06 KB

README.md

File metadata and controls

54 lines (34 loc) · 1.06 KB

aws-get-ip

npm version

Return the private ip of a list of EC2 instanstes using aws-sdk

Install

npm install aws-get-ip

Usage


const Finder = require('aws-get-ip')
const getIp = new Finder({
  region: 'eu-central-1'
})

getIp.byTags({tag: 'value'}, function (err, ips) {
  console.log(ips)
})

Options

The constructor accepts the same options of aws-sdk.

You should pass in the aws region and credentials (unless using a IAM role)

Methods

byTags(tags, callback)

List all the private ips of running instances with the specified tags

License

Copyright (c) 2013 - 2016, Paolo Chiodi and other contributors. Licensed under MIT.