diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf index bef4a16c..99d12efa 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf @@ -20,6 +20,10 @@ resource "aws_cloudwatch_log_group" "api_logs" { resource "null_resource" "pip_install" { count = var.requirements_file != null ? 1 : 0 + triggers = { + always_run = timestamp() + } + provisioner "local-exec" { command = "pip install -r ${var.requirements_file} -t ${var.source_dir} --platform manylinux2014_x86_64 --implementation cp --python-version 3.11 --only-binary=:all: --upgrade" }