From 53bbb57a679d46062183e87487841b0411f49946 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 13 Mar 2026 14:01:43 +0000 Subject: [PATCH] fix incorrect terraform syntax --- infrastructure/terraform/modules/cloudfront/main.tf | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/infrastructure/terraform/modules/cloudfront/main.tf b/infrastructure/terraform/modules/cloudfront/main.tf index 02b64606..1ebe0578 100644 --- a/infrastructure/terraform/modules/cloudfront/main.tf +++ b/infrastructure/terraform/modules/cloudfront/main.tf @@ -22,9 +22,7 @@ resource "aws_cloudfront_distribution" "this" { for_each = origin.value.origin_type == "s3" ? [1] : [] content { - origin_access_identity = - aws_cloudfront_origin_access_identity.oai[origin.key] - .cloudfront_access_identity_path + origin_access_identity = aws_cloudfront_origin_access_identity.oai[origin.key].cloudfront_access_identity_path } }