Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 346 Bytes

File metadata and controls

18 lines (13 loc) · 346 Bytes

aws-locate

Locate the region and/or availability zone for a node process running on EC2

// to get the availability zone:
require('aws-locate').getAvailabilityZone(function (err, zone) {
  console.log(zone)
})

// to get the region
require ('aws-locate').getRegion(function (err, region) {
  console.log(region)
})