Skip to content

Commit

Permalink
fix: there was an issue in the reference to the file
Browse files Browse the repository at this point in the history
  • Loading branch information
gambol99 committed Jul 12, 2024
1 parent 4463da8 commit 396739f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down

0 comments on commit 396739f

Please sign in to comment.