Skip to content

Commit 7652858

Browse files
committed
chore: upgrade lock file
1 parent 61343d7 commit 7652858

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

Diff for: application/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ export async function handler(event, context) {
44

55
return {
66
statusCode: 200,
7+
headers: { "Content-Type": "application/json" },
78
body: JSON.stringify("Hello World!"),
89
};
9-
};
10+
}

Diff for: infra/gateway/.terraform.lock.hcl

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: infra/lambda/.terraform.lock.hcl

+6-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: infra/lambda/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ resource "aws_api_gateway_integration" "this" {
5454
resource_id = var.api_gateway_resource_id
5555
http_method = var.api_gateway_http_method
5656
type = "AWS_PROXY"
57-
integration_http_method = "GET"
57+
integration_http_method = "POST"
5858
uri = aws_lambda_function.this.invoke_arn
5959
}
6060

0 commit comments

Comments
 (0)