await getSSMParam()

in src/lambda.ts [17:31]


		await getSSMParam('ticker-config', stage),
	);
	const gcpConfig = await getSSMParam('gcp-wif-credentials-config', stage);

	const campaignConfig = tickerConfig[campaignName];
	console.log('Using config:', campaignConfig);

	const authClient = await buildAuthClient(gcpConfig);
	const amount = await runQuery(authClient, stage, campaignConfig);

	const result: TickerResult = {
		goal: campaignConfig.GoalAmount,
		total: Math.round(amount) + campaignConfig.InitialAmount,
		type: campaignConfig.type,
	};