From 6e4b82c706c3587505cd50a992fa28b807eefcec Mon Sep 17 00:00:00 2001 From: Dmytro Melnychenko <51658169+bee7ch7@users.noreply.github.com> Date: Wed, 14 Aug 2024 13:02:04 -0600 Subject: [PATCH] feat: Add "self" attribute to the security group rule (#463) --- main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/main.tf b/main.tf index c82cdc4..9c8b756 100644 --- a/main.tf +++ b/main.tf @@ -355,6 +355,7 @@ resource "aws_security_group_rule" "this" { ipv6_cidr_blocks = try(each.value.ipv6_cidr_blocks, null) prefix_list_ids = try(each.value.prefix_list_ids, null) source_security_group_id = try(each.value.source_security_group_id, null) + self = try(each.value.self, null) } ################################################################################