Skip to content

Commit 94c6245

Browse files
committed
fix(changing-count): count change again
1 parent fc1db67 commit 94c6245

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 ? 1 : 0
27+
count = local.create && var.create_function && !var.create_layer && !var.ignore_image_uri ? 1 : 0
2828

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

0 commit comments

Comments
 (0)