From 45ec4e5a3f6db88ce09a2aa40a3ac94dd36476fe Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Wed, 8 May 2024 00:09:47 -0400 Subject: [PATCH] try switching from checksum to etag --- hosts/arrow/aws/image.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/arrow/aws/image.tf b/hosts/arrow/aws/image.tf index 91a6c27..3ac8e02 100644 --- a/hosts/arrow/aws/image.tf +++ b/hosts/arrow/aws/image.tf @@ -17,7 +17,7 @@ data "aws_s3_object" "image" { } resource "terraform_data" "image_replacement" { - input = data.aws_s3_object.image.checksum_sha256 + input = data.aws_s3_object.image.etag } # Setup IAM access for the VM Importer