We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 251c608 + 63dfb2c commit 8687749Copy full SHA for 8687749
1 file changed
main.tf
@@ -13,7 +13,9 @@ locals {
13
resource "aws_lambda_function" "lambda" {
14
count = var.ignore_external_function_updates ? 0 : 1
15
depends_on = [aws_cloudwatch_log_group.lambda]
16
-
+ lifecycle {
17
+ replace_triggered_by = [aws_iam_role.lambda]
18
+ }
19
architectures = var.architectures
20
description = var.description
21
filename = var.filename
0 commit comments