From 396739f83688d81251247518d27f2f1e90227c7f Mon Sep 17 00:00:00 2001 From: Rohith Jayawardene Date: Fri, 12 Jul 2024 11:16:11 +0100 Subject: [PATCH] fix: there was an issue in the reference to the file --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 56c9576..888c0e5 100644 --- a/main.tf +++ b/main.tf @@ -171,7 +171,7 @@ resource "aws_s3_object" "cloudformation_templates" { for_each = fileset("${path.module}/assets/cloudformation/", "**/*.yaml") bucket = module.cloudformation_bucket.s3_bucket_id - etag = filemd5("${path.module}/assets/cloudformation/cudos/${each.value}") + etag = filemd5("${path.module}/assets/cloudformation/${each.value}") key = each.value server_side_encryption = "AES256" source = "${path.module}/assets/cloudformation/${each.value}"