From b0c335df3991c675c587866cb6ff95bb7e562ae06388d72d98f50a7a7b39b68b Mon Sep 17 00:00:00 2001 From: xpk Date: Thu, 19 Feb 2026 18:17:10 +0800 Subject: [PATCH] doc: added example rule with ipv6 address block --- modules/compute/security_group/example/main.tf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/compute/security_group/example/main.tf b/modules/compute/security_group/example/main.tf index b47dbe8..19d8527 100644 --- a/modules/compute/security_group/example/main.tf +++ b/modules/compute/security_group/example/main.tf @@ -9,7 +9,8 @@ module "example-sg" { r3 = "tcp,52311,52311,${aws_ec2_managed_prefix_list.example.id},BigFix server to client" } egress = { - r1 = "-1,-1,-1,0.0.0.0/0,Allow Ingress from all" + r1 = "-1,-1,-1,0.0.0.0/0,Allow egress ipv4" + r2 = "-1,-1,-1,::/0,Allow egress ipv6" } }