Skip to content

Commit

Permalink
* 2.6.1 -- 2025-05-05
Browse files Browse the repository at this point in the history
  - custom: fix ingress_map dynamic ingress
  • Loading branch information
badra001 committed May 5, 2025
1 parent c03adb0 commit fd657f2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion common/resources.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"]}"
Expand Down
2 changes: 1 addition & 1 deletion common/version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
_module_version = "2.6.0"
_module_version = "2.6.1"
}

0 comments on commit fd657f2

Please sign in to comment.