prowler-sdk-poc
Version:
25 lines (19 loc) • 819 B
JavaScript
var AWS = require('../core');
var Endpoint = require('./endpoint');
var EndpointMode = require('./endpoint_mode');
var ENDPOINT_CONFIG_OPTIONS = require('./endpoint_config_options').ENDPOINT_CONFIG_OPTIONS;
var ENDPOINT_MODE_CONFIG_OPTIONS = require('./endpoint_mode_config_options').ENDPOINT_MODE_CONFIG_OPTIONS;
var getMetadataServiceEndpoint = function() {
var endpoint = AWS.util.loadConfig(ENDPOINT_CONFIG_OPTIONS);
if (endpoint !== undefined) return endpoint;
var endpointMode = AWS.util.loadConfig(ENDPOINT_MODE_CONFIG_OPTIONS);
switch (endpointMode) {
case EndpointMode.IPv4:
return Endpoint.IPv4;
case EndpointMode.IPv6:
return Endpoint.IPv6;
default:
throw new Error('Unsupported endpoint mode: ' + endpointMode);
}
};
module.exports = getMetadataServiceEndpoint;