Skip to content

Commit 9c6e4e8

Browse files
committed
Removed redundant depends_on
1 parent 30e0604 commit 9c6e4e8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

r_lambda.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ resource "null_resource" "lambda_build" {
1919
}
2020

2121
resource "aws_lambda_function" "this" {
22-
depends_on = [null_resource.lambda_build]
23-
for_each = local.lambdas
22+
for_each = local.lambdas
2423

2524
filename = "${path.module}/archive/${each.key}.zip"
2625
function_name = "${each.key}_${local.service_name}"

0 commit comments

Comments
 (0)