UNPKG

@csermet/multiprovider

Version:

cloud-graph provider plugin for AWS used to fetch AWS cloud data.

18 lines (17 loc) 745 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.region = exports.account = exports.credentials = exports.endpoint = void 0; const environment_1 = __importDefault(require("../config/environment")); const utils_1 = require("../utils"); exports.endpoint = utils_1.initTestEndpoint(); // TODO: Probably solved by ENG-89 exports.credentials = { accessKeyId: 'test', secretAccessKey: 'test', }; // TODO: Single region for now to match free license Localstack limitation exports.account = environment_1.default.LOCALSTACK_AWS_ACCOUNT_ID; exports.region = 'us-east-1';