From 760f6710551902409ac83b1fd866fcaeda75b9f0 Mon Sep 17 00:00:00 2001 From: Italo Pessoa Date: Thu, 19 Sep 2024 08:29:58 -0300 Subject: [PATCH] disable cache --- modules/authenticator_agw/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/authenticator_agw/main.tf b/modules/authenticator_agw/main.tf index 355b087..7c51c16 100644 --- a/modules/authenticator_agw/main.tf +++ b/modules/authenticator_agw/main.tf @@ -180,7 +180,7 @@ resource "aws_apigatewayv2_authorizer" "external" { authorizer_type = "REQUEST" name = "cpf_authorizer" authorizer_payload_format_version = "2.0" - authorizer_result_ttl_in_seconds = 60 + authorizer_result_ttl_in_seconds = 0 enable_simple_responses = false authorizer_uri = var.authenticator_lambda_arn }