get_endpoint.js 153 B

12345678
  1. var getEndpoint = function() {
  2. return {
  3. IPv4: 'http://169.254.169.254',
  4. IPv6: 'http://[fd00:ec2::254]',
  5. };
  6. };
  7. module.exports = getEndpoint;