From 113d71e42a48d44a8ce633a2adc738b8d9005aba Mon Sep 17 00:00:00 2001 From: Nick Dumas Date: Tue, 3 Jun 2025 05:58:21 -0400 Subject: [PATCH] We should be POSTing files to the load endpoint --- api_gw.load.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api_gw.load.tf b/api_gw.load.tf index 8795b51..c173fd6 100644 --- a/api_gw.load.tf +++ b/api_gw.load.tf @@ -6,7 +6,7 @@ resource "aws_api_gateway_resource" "transponder-tracker-load" { resource "aws_api_gateway_method" "transponder-tracker-load" { authorization = "NONE" - http_method = "GET" + http_method = "POST" resource_id = aws_api_gateway_resource.transponder-tracker-load.id rest_api_id = aws_api_gateway_rest_api.transponder-tracker.id }