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 }