From efb20b4a005672927a17e207f8a789255f125c8f Mon Sep 17 00:00:00 2001 From: Fionn Masuhr Date: Wed, 29 Nov 2023 11:10:55 +0100 Subject: [PATCH 1/2] drop deprecated replace_security_groups_on_destroy attribute --- main.tf | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.tf b/main.tf index e553a67..ee24a6c 100644 --- a/main.tf +++ b/main.tf @@ -21,8 +21,6 @@ resource "aws_lambda_function" "this" { } } - replace_security_groups_on_destroy = var.vpc_config != null ? true : null - dynamic "environment" { // local.environments is built using a merge, and merges always result in a map // so we can safely assume we're dealing with a map here. From 6e4feae0cf8061d6e81fcc4ab85c732ef0a8d363 Mon Sep 17 00:00:00 2001 From: Fionn Masuhr Date: Wed, 29 Nov 2023 11:13:35 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ecd3f2..7bdbac0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v1.6.0 + +- [Drop deprecated replace_security_groups_on_destroy attribute](https://github.com/babbel/terraform-aws-lambda-with-inline-code/pull/28) + ## v1.5.0 - [Relax version constraints for modules](https://github.com/babbel/terraform-aws-lambda-with-inline-code/pull/24)