Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
9 lines
517 B
Text
9 lines
517 B
Text
import { getProfileName, parseKnownFiles } from "@smithy/shared-ini-file-loader";
|
|
import { resolveProcessCredentials } from "./resolveProcessCredentials";
|
|
export const fromProcess = (init = {}) => async ({ callerClientConfig } = {}) => {
|
|
init.logger?.debug("@aws-sdk/credential-provider-process - fromProcess");
|
|
const profiles = await parseKnownFiles(init);
|
|
return resolveProcessCredentials(getProfileName({
|
|
profile: init.profile ?? callerClientConfig?.profile,
|
|
}), profiles, init.logger);
|
|
};
|