From 7c3016a17aff6d2d176868a4bfbd842a0098982d Mon Sep 17 00:00:00 2001 From: Solomon Negusse Date: Tue, 16 Jul 2024 11:29:55 +0300 Subject: [PATCH] fix issue with query requesting counting to quota --- terraform/modules/api_gateway/gateway/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/modules/api_gateway/gateway/main.tf b/terraform/modules/api_gateway/gateway/main.tf index 18fd0c05..64168bb3 100644 --- a/terraform/modules/api_gateway/gateway/main.tf +++ b/terraform/modules/api_gateway/gateway/main.tf @@ -48,7 +48,7 @@ module "query_get" { require_api_key = false http_method = "GET" - authorization = "CUSTOM" + authorization = "NONE" integration_parameters = { "integration.request.path.version" = "method.request.path.version" @@ -75,7 +75,7 @@ module "query_post" { require_api_key = false http_method = "POST" - authorization = "CUSTOM" + authorization = "NONE" integration_parameters = { "integration.request.path.version" = "method.request.path.version"