From 88c49b1dbad41312e155dabb82d644ffc02687a4 Mon Sep 17 00:00:00 2001 From: Nikolay Metchev Date: Wed, 15 May 2024 10:21:57 +0100 Subject: [PATCH] Ignore more stuff (#2) --- main.tf | 9 +++++++++ modules/alias/main.tf | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 4c0004ac..3a13b004 100644 --- a/main.tf +++ b/main.tf @@ -168,6 +168,15 @@ resource "aws_lambda_function" "this" { timeout, environment, snap_start, + reserved_concurrent_executions, + runtime, + architectures, + last_modified, + qualified_arn, + qualified_invoke_arn, + source_code_hash, + source_code_size, + version, ] } } diff --git a/modules/alias/main.tf b/modules/alias/main.tf index 0f76d4b5..b91fb49d 100644 --- a/modules/alias/main.tf +++ b/modules/alias/main.tf @@ -29,7 +29,7 @@ resource "aws_lambda_alias" "no_refresh" { } lifecycle { - ignore_changes = [function_version, description] + ignore_changes = all } }