Skip to content

Commit

Permalink
fix: fail to download wrong tag of lambda (#840)
Browse files Browse the repository at this point in the history
Signed-off-by: kuvaldini <ivan@kuvaldini.pro>
  • Loading branch information
kuvaldini authored May 21, 2021
1 parent d89729e commit 6d31735
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/download-lambda/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}

0 comments on commit 6d31735

Please sign in to comment.