From bccc7dbada38b9658cc76179d596d711e1202910 Mon Sep 17 00:00:00 2001 From: Umang Mistry Date: Thu, 27 Jun 2024 16:33:44 -0500 Subject: [PATCH] Updated layer package --- .../aws-textract-pipeline-part3/variables.tf | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/textract-pipeline/terraform/modules/aws-textract-pipeline-part3/variables.tf b/textract-pipeline/terraform/modules/aws-textract-pipeline-part3/variables.tf index 83fe611..d0e2298 100644 --- a/textract-pipeline/terraform/modules/aws-textract-pipeline-part3/variables.tf +++ b/textract-pipeline/terraform/modules/aws-textract-pipeline-part3/variables.tf @@ -180,8 +180,8 @@ variable "snowflake_connector_lambda_layer" { description = "Snowflake connector layer used to log pipeline progress" compatible_runtimes = ["python3.9"] compatible_architectures = ["x86_64"] - source_path = "../src/lambda-layer/snowflake-connector/sf-39-layer.zip" - local_existing_package = null + source_path = null + local_existing_package = "../src/lambda-layer/snowflake-connector/sf-39-layer.zip" create_package = false } } @@ -202,8 +202,8 @@ variable "anthropic_sf_lambda_layer" { description = "Anthropic and snowflake connector layer used for operationalizing the LLM lambda" compatible_runtimes = ["python3.10"] compatible_architectures = ["x86_64"] - source_path = "../src/lambda-layer/anthropic-snowflake/anthropic-sf-310.zip" - local_existing_package = null + source_path = null + local_existing_package = "../src/lambda-layer/anthropic-snowflake/anthropic-sf-310.zip" create_package = false } } @@ -224,8 +224,8 @@ variable "pydantic_lambda_layer" { description = "Pydantic & Numpy layer used for operationalizing the LLM lambda" compatible_runtimes = ["python3.10"] compatible_architectures = ["x86_64"] - source_path = "../src/lambda-layer/pydantic-218/pydantic.zip" - local_existing_package = null + source_path = null + local_existing_package = "../src/lambda-layer/pydantic-218/pydantic.zip" create_package = false } } @@ -246,8 +246,8 @@ variable "pandas_numpy_lambda_layer" { description = "Pandas and Numpy for Py 3.10 layer used for operationalizing the LLM lambda" compatible_runtimes = ["python3.10"] compatible_architectures = ["x86_64"] - source_path = "../src/lambda-layer/pandas-np-310/pd_np.zip" - local_existing_package = null + source_path = null + local_existing_package = "../src/lambda-layer/pandas-np-310/pd_np.zip" create_package = false } }