We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f50ebc commit 2923a27Copy full SHA for 2923a27
1 file changed
modules/runner-binaries-syncer/runner-binaries-syncer.tf
@@ -119,10 +119,10 @@ resource "aws_lambda_permission" "syncer" {
119
###################################################################################
120
121
resource "aws_s3_bucket_object" "trigger" {
122
- bucket = aws_s3_bucket.action_dist.id
123
- key = "triggers/${aws_lambda_function.syncer.id}-trigger.json"
124
- source = "${path.module}/trigger.json"
125
- etag = filemd5("${path.module}/trigger.json")
+ bucket = aws_s3_bucket.action_dist.id
+ key = "triggers/${aws_lambda_function.syncer.id}-trigger.json"
+ source = "${path.module}/trigger.json"
+ source_hash = filemd5("${path.module}/trigger.json")
126
127
depends_on = [aws_s3_bucket_notification.on_deploy]
128
}
0 commit comments