From 81e7a1c91a6cba30f0bf5d69bbbd2c8976ce6616 Mon Sep 17 00:00:00 2001 From: "Axel Garcia K." Date: Thu, 18 Dec 2025 11:08:40 +0000 Subject: [PATCH] NRL-1855 Fix to possible terraform race condition in prod --- terraform/account-wide-infrastructure/modules/glue/s3.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/account-wide-infrastructure/modules/glue/s3.tf b/terraform/account-wide-infrastructure/modules/glue/s3.tf index cff5d1274..e14531fe6 100644 --- a/terraform/account-wide-infrastructure/modules/glue/s3.tf +++ b/terraform/account-wide-infrastructure/modules/glue/s3.tf @@ -197,5 +197,5 @@ resource "aws_s3_object" "zip" { bucket = aws_s3_bucket.code-bucket.bucket key = "src.zip" source = data.archive_file.python.output_path - source_hash = filemd5(data.archive_file.python.output_path) + source_hash = data.archive_file.python.output_base64sha256 }