Skip to content

Commit

Permalink
fix: korjaa kuulutustaulusyötteen käyttäjien tunnistaminen (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
haapamakim authored Jun 20, 2022
1 parent 48eb06b commit c288bf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/parameterStore.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import AWS from "aws-sdk";

const ssm = new AWS.SSM();
const ssm = new AWS.SSM({ region: "eu-west-1" });

async function getParameter(name: string) {
return (await ssm.getParameter({ Name: name, WithDecryption: true }).promise()).Parameter?.Value;
Expand Down

0 comments on commit c288bf1

Please sign in to comment.