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 0a03dbe..59f3507 100644 --- a/textract-pipeline/terraform/modules/aws-textract-pipeline-part3/variables.tf +++ b/textract-pipeline/terraform/modules/aws-textract-pipeline-part3/variables.tf @@ -180,7 +180,7 @@ 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/" + source_path = "../src/lambda-layer/snowflake-connector/sf-39-layer.zip" local_existing_package = null create_package = true } @@ -202,7 +202,7 @@ 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-sf" + source_path = "../src/lambda-layer/anthropic-sf/anthropic-sf.zip" local_existing_package = null create_package = true } @@ -224,7 +224,7 @@ 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" + source_path = "../src/lambda-layer/pydantic-218/pydantic.zip" local_existing_package = null create_package = true } @@ -246,7 +246,7 @@ 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-numpy-310" + source_path = "../src/lambda-layer/pandas-numpy-310/pd_np.zip" local_existing_package = null create_package = true }