From 98ad7d1d7c2d2c27ca1d1efcb63b2f2dfd3af270 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 16 Mar 2026 16:06:20 +0000 Subject: [PATCH] disable query string behaviour caching as caching time is set to 0 --- infrastructure/terraform/modules/cloudfront/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/terraform/modules/cloudfront/main.tf b/infrastructure/terraform/modules/cloudfront/main.tf index 11f086fd..3b5fe549 100644 --- a/infrastructure/terraform/modules/cloudfront/main.tf +++ b/infrastructure/terraform/modules/cloudfront/main.tf @@ -15,7 +15,7 @@ resource "aws_cloudfront_cache_policy" "api" { } query_strings_config { - query_string_behavior = "all" + query_string_behavior = "none" } } }