From db35eac5e4a960fce5b9ea7c6a0497eb6d74ceb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Hoste?= Date: Fri, 24 Nov 2023 18:34:08 +0100 Subject: [PATCH] fix content_type in aws_wafv2_web_acl to use correct map value --- rules.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules.tf b/rules.tf index 53908cb..5b5af5e 100644 --- a/rules.tf +++ b/rules.tf @@ -129,7 +129,7 @@ resource "aws_wafv2_web_acl" "default" { content { key = custom_response_body.key content = custom_response_body.value.content - content_type = custom_response_body.value.content + content_type = custom_response_body.value.content_type } }