From fd657f23c6f804db1a4dbab66810b57346dd9347 Mon Sep 17 00:00:00 2001 From: badra001 Date: Mon, 5 May 2025 15:00:18 -0400 Subject: [PATCH] * 2.6.1 -- 2025-05-05 - custom: fix ingress_map dynamic ingress --- CHANGELOG.md | 3 +++ common/resources.tf | 2 +- common/version.tf | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2fadfa..cb95a13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -76,3 +76,6 @@ * 2.6.0 -- 2025-01-28 - redshift: new submodule + +* 2.6.1 -- 2025-05-05 + - custom: fix ingress_map dynamic ingress diff --git a/common/resources.tf b/common/resources.tf index b152f21..1ee3af6 100644 --- a/common/resources.tf +++ b/common/resources.tf @@ -55,7 +55,7 @@ resource "aws_security_group" "this_security_group" { # ingress map dynamic "ingress" { - for_each = local.port_map["ingress_ports"] + for_each = local.port_map["ingress_map"] iterator = p content { description = "${local.short_description}: ${p.value["description"]}" diff --git a/common/version.tf b/common/version.tf index b061df5..881c400 100644 --- a/common/version.tf +++ b/common/version.tf @@ -1,3 +1,3 @@ locals { - _module_version = "2.6.0" + _module_version = "2.6.1" }