We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b260ffe commit b256c4bCopy full SHA for b256c4b
package.tf
@@ -29,7 +29,14 @@ data "external" "archive_prepare" {
29
runtime = var.runtime
30
source_path = jsonencode(var.source_path)
31
hash_extra = var.hash_extra
32
- hash_extra_paths = jsonencode(["${path.module}/package.py"])
+ hash_extra_paths = jsonencode(
33
+ [
34
+ # Temporary fix when building from multiple locations
35
+ # We should take into account content of package.py when counting hash
36
+ # Related issue: https://github.com/terraform-aws-modules/terraform-aws-lambda/issues/63
37
+ # "${path.module}/package.py"
38
+ ]
39
+ )
40
}
41
42
0 commit comments