try switching from checksum to etag

This commit is contained in:
Noah Masur 2024-05-08 00:09:47 -04:00
parent 48fbb2e2d9
commit 45ec4e5a3f
No known key found for this signature in database

View File

@ -17,7 +17,7 @@ data "aws_s3_object" "image" {
} }
resource "terraform_data" "image_replacement" { 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 # Setup IAM access for the VM Importer