mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Ensure CGO_ENABLED=0 is forced for cron_monitoring lambda (#15201)
This commit is contained in:
parent
695ad26cb7
commit
ccd7ae82e5
1 changed files with 1 additions and 1 deletions
|
|
@ -286,7 +286,7 @@ resource "null_resource" "cron_monitoring_build" {
|
|||
working_dir = "${path.module}/lambda"
|
||||
command = <<-EOT
|
||||
go get
|
||||
GOOS=linux GOARCH=amd64 go build -tags lambda.norpc -o bootstrap main.go
|
||||
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -tags lambda.norpc -o bootstrap main.go
|
||||
EOT
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue