diff --git a/modules/download-lambda/main.tf b/modules/download-lambda/main.tf index ca3620f7f3..52af298871 100644 --- a/modules/download-lambda/main.tf +++ b/modules/download-lambda/main.tf @@ -8,6 +8,6 @@ resource "null_resource" "download" { } provisioner "local-exec" { - command = "curl -o ${self.triggers.file} -L https://github.com/philips-labs/terraform-aws-github-runner/releases/download/${self.triggers.tag}/${self.triggers.name}.zip" + command = "curl -o ${self.triggers.file} -fL https://github.com/philips-labs/terraform-aws-github-runner/releases/download/${self.triggers.tag}/${self.triggers.name}.zip" } }