53 lines
2.3 KiB
JavaScript
53 lines
2.3 KiB
JavaScript
|
import { NODE_REGION_CONFIG_OPTIONS } from "@smithy/config-resolver";
|
||
|
import { loadConfig } from "@smithy/node-config-provider";
|
||
|
import { memoize } from "@smithy/property-provider";
|
||
|
import { AWS_DEFAULT_REGION_ENV, AWS_EXECUTION_ENV, AWS_REGION_ENV, DEFAULTS_MODE_OPTIONS, ENV_IMDS_DISABLED, IMDS_REGION_PATH, } from "./constants";
|
||
|
import { NODE_DEFAULTS_MODE_CONFIG_OPTIONS } from "./defaultsModeConfig";
|
||
|
export const resolveDefaultsModeConfig = ({ region = loadConfig(NODE_REGION_CONFIG_OPTIONS), defaultsMode = loadConfig(NODE_DEFAULTS_MODE_CONFIG_OPTIONS), } = {}) => memoize(async () => {
|
||
|
const mode = typeof defaultsMode === "function" ? await defaultsMode() : defaultsMode;
|
||
|
switch (mode?.toLowerCase()) {
|
||
|
case "auto":
|
||
|
return resolveNodeDefaultsModeAuto(region);
|
||
|
case "in-region":
|
||
|
case "cross-region":
|
||
|
case "mobile":
|
||
|
case "standard":
|
||
|
case "legacy":
|
||
|
return Promise.resolve(mode?.toLocaleLowerCase());
|
||
|
case undefined:
|
||
|
return Promise.resolve("legacy");
|
||
|
default:
|
||
|
throw new Error(`Invalid parameter for "defaultsMode", expect ${DEFAULTS_MODE_OPTIONS.join(", ")}, got ${mode}`);
|
||
|
}
|
||
|
});
|
||
|
const resolveNodeDefaultsModeAuto = async (clientRegion) => {
|
||
|
if (clientRegion) {
|
||
|
const resolvedRegion = typeof clientRegion === "function" ? await clientRegion() : clientRegion;
|
||
|
const inferredRegion = await inferPhysicalRegion();
|
||
|
if (!inferredRegion) {
|
||
|
return "standard";
|
||
|
}
|
||
|
if (resolvedRegion === inferredRegion) {
|
||
|
return "in-region";
|
||
|
}
|
||
|
else {
|
||
|
return "cross-region";
|
||
|
}
|
||
|
}
|
||
|
return "standard";
|
||
|
};
|
||
|
const inferPhysicalRegion = async () => {
|
||
|
if (process.env[AWS_EXECUTION_ENV] && (process.env[AWS_REGION_ENV] || process.env[AWS_DEFAULT_REGION_ENV])) {
|
||
|
return process.env[AWS_REGION_ENV] ?? process.env[AWS_DEFAULT_REGION_ENV];
|
||
|
}
|
||
|
if (!process.env[ENV_IMDS_DISABLED]) {
|
||
|
try {
|
||
|
const { getInstanceMetadataEndpoint, httpRequest } = await import("@smithy/credential-provider-imds");
|
||
|
const endpoint = await getInstanceMetadataEndpoint();
|
||
|
return (await httpRequest({ ...endpoint, path: IMDS_REGION_PATH })).toString();
|
||
|
}
|
||
|
catch (e) {
|
||
|
}
|
||
|
}
|
||
|
};
|