79198770

Date: 2024-11-18 05:26:01
Score: 0.5
Natty:
Report link

To correct this, rather than using the filemd5() function over the output_path property, instead use the output_md5 property, like so:

data "archive_file" "my_file" {
  # ...
}

resource "aws_s3_object" "my_object" {
  # ...
  etag = data.archive_file.my_file.output_md5
  # ...
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: KommandantKeen