Skip to content
This repository has been archived by the owner on Apr 10, 2023. It is now read-only.

Commit

Permalink
typo, use node v12 due to aws/aws-cdk#12536
Browse files Browse the repository at this point in the history
  • Loading branch information
rajyan committed Aug 6, 2021
1 parent 2ac8cab commit ed99d39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ac-alert-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ export class AcAlertStack extends cdk.Stack {
this,
"WebHookSsm",
{
parameterName: "/slack-webhook-url",
parameterName: "/ac-alert/slack-webhook-url",
version: 1,
}
);

const lambda = new NodejsFunction(this, "Handler", {
runtime: Runtime.NODEJS_14_X,
runtime: Runtime.NODEJS_12_X,
entry: path.join(__dirname, "../src/handler.ts"),
handler: "handler",
environment: {
Expand Down

0 comments on commit ed99d39

Please sign in to comment.