Skip to content

Commit 81e7a1c

Browse files
NRL-1855 Fix to possible terraform race condition in prod
1 parent f3706f6 commit 81e7a1c

File tree

1 file changed

+1
-1
lines changed
  • terraform/account-wide-infrastructure/modules/glue

1 file changed

+1
-1
lines changed

terraform/account-wide-infrastructure/modules/glue/s3.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,5 +197,5 @@ resource "aws_s3_object" "zip" {
197197
bucket = aws_s3_bucket.code-bucket.bucket
198198
key = "src.zip"
199199
source = data.archive_file.python.output_path
200-
source_hash = filemd5(data.archive_file.python.output_path)
200+
source_hash = data.archive_file.python.output_base64sha256
201201
}

0 commit comments

Comments
 (0)