Skip to content

Commit fc1db67

Browse files
committed
fix(need-to-create-both-lambdas): need to create both lambdas
1 parent a92de3e commit fc1db67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ locals {
2424
}
2525

2626
resource "aws_lambda_function" "this" {
27-
count = local.create && var.create_function && !var.create_layer && !var.ignore_image_uri? 1 : 0
27+
count = local.create && var.create_function && !var.create_layer ? 1 : 0
2828

2929
function_name = var.function_name
3030
description = var.description

0 commit comments

Comments
 (0)