Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
ec2-instance-data-promise
Advanced tools
recursively retrieve ec2 instance data via http.get. With Promises(bluebird)
Recursively retrieve EC2 instance data via http.get.
Note: this assumes that a metadata service is available at http://169.254.169.254/. Thus it works on EC2 instances, behavior on other machines is undefined. See the test/ folder for a fake service you can use for testing elsewhere.
npm install ec2-instance-data
var instance = require("ec2-instance-data");
instance.init(function () {
console.log("instance.latest = %s", JSON.stringify(instance.latest, null, " "));
});
Amazon makes available to EC2 instances a variety of instance specific data via http GET calls to a
magic IP address and a set of well-known paths. However the exact data available depends on
what features the instance was started with (e.g. security groups, IAM roles, instance type, etc.),
and Amazon adds more stuff over time, leading to maintenance headaches for any module that tries to wrap
this with an API. This module smooths over that variability by recursively spidering the URLs starting
from a couple common roots: /latest/meta-data/
and /latest/dynamic/
(the roots can be overridden
if desired). While it does generate a lot of http requests, it still only takes about 50 milliseconds
to spider the default data set, which should be tolerable when starting a service.
There is another store of meta-data for EC2 instances, tags.
By default all instances created via the console have a Name
tag, but you can add others. The tags for the current instance
can be accessed via the initTags
method, which must be called after init
. This uses EC2's
DescribeTags API via
the AWS SDK for Node.js. Because this is an optional dependency you must explicitly install it with
npm install aws-sdk
. To access the tags the client must be initialized with credentials for an account with
permission to use the DescribeTags API, by far the simplest way to do this is to assign an IAM role to the instance,
in which case it will "just work", e.g.
var instance = require("./index.js");
instance.init(function (error, data) {
if (error) {
console.log(error);
process.exit();
} else {
instance.initTags(console.log);
}
});
{
"Name": "MyInstanceName",
"OtherTag": "SomethingElse"
}
If no IAM Role is available you can set the credentials explicitly before calling initTags
, see
aws-sdk docs for details.
This module inspired in part by several other efforts in the same realm, including ec2-user-data and ec2metadata by @kilianc, which is worth considering as an alternative to this.
MIT
FAQs
recursively retrieve ec2 instance data via http.get. With Promises(bluebird)
We found that ec2-instance-data-promise demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.