Skip to content

Commit

Permalink
Merge pull request #97 from FloRul/email-request-pre-processor-as-zip
Browse files Browse the repository at this point in the history
fix path
  • Loading branch information
joelbalcaen authored Mar 26, 2024
2 parents f5761de + ec485de commit 251123b
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ module "lambda_function_container_image" {



source = "terraform-aws-modules/lambda/aws"
handler = "com.levio.awsdemo.emailrequestpreprocessor.App::handleRequest"
publish = true
runtime = "java17"
timeout = 60
source = "terraform-aws-modules/lambda/aws"
handler = "com.levio.awsdemo.emailrequestpreprocessor.App::handleRequest"
publish = true
runtime = "java17"
timeout = 60
function_name = var.lambda_function_name
memory_size = 1024
role_name = "${var.lambda_function_name}-role"
attach_policy_statements = true
s3_bucket = var.lambda_storage_bucket
source_path = "${path.module}/target"
source_path = "${path.module}/../target"


environment_variables = {
Expand Down

0 comments on commit 251123b

Please sign in to comment.