From 4b22c774e22fe17b760faf524504fefd8ce534ff Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Tue, 7 May 2024 20:08:33 -0400 Subject: [PATCH] try enabling checksum mode on s3 to get checksum values --- hosts/arrow/aws/image.tf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hosts/arrow/aws/image.tf b/hosts/arrow/aws/image.tf index 7317880..9627a02 100644 --- a/hosts/arrow/aws/image.tf +++ b/hosts/arrow/aws/image.tf @@ -12,8 +12,9 @@ # Use existing image in S3 data "aws_s3_object" "image" { - bucket = var.images_bucket - key = "arrow.vhd" + bucket = var.images_bucket + key = "arrow.vhd" + checksum_mode = "ENABLED" } # Setup IAM access for the VM Importer