Skip to content

Commit

Permalink
Merge pull request #105 from FloRul/email-request-pre-processor-as-zip
Browse files Browse the repository at this point in the history
one last change
  • Loading branch information
joelbalcaen authored Mar 27, 2024
2 parents 56a0cb1 + 6cc773d commit 6b8bd06
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
data "aws_caller_identity" "current" {}

module "lambda_function_container_image" {
module "lambda_function_existing_package_local" {
# source = "terraform-aws-modules/lambda/aws"
# function_name = local.lambda_function_name
# handler = "index.lambda_handler"
Expand All @@ -26,7 +26,7 @@ module "lambda_function_container_image" {
role_name = "${var.lambda_function_name}-role"
attach_policy_statements = true
s3_bucket = var.lambda_storage_bucket
image_uri = "${path.module}/../target/email-request-preprocessor-1.0.jar"
local_existing_package = "${path.module}/../target/email-request-preprocessor-1.0.jar"
create_package = false

environment_variables = {
Expand Down

0 comments on commit 6b8bd06

Please sign in to comment.