8 lines
153 B
JavaScript
8 lines
153 B
JavaScript
var getEndpoint = function() {
|
|
return {
|
|
IPv4: 'http://169.254.169.254',
|
|
IPv6: 'http://[fd00:ec2::254]',
|
|
};
|
|
};
|
|
|
|
module.exports = getEndpoint;
|