From 246090b92db27fd201768d1f3280cd704c912df3 Mon Sep 17 00:00:00 2001 From: Kurt Portelli Date: Thu, 27 Jul 2023 12:46:58 +0200 Subject: [PATCH] changing cidrs --- aws/rds/main.tf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/aws/rds/main.tf b/aws/rds/main.tf index 4e26db3..18cb17a 100644 --- a/aws/rds/main.tf +++ b/aws/rds/main.tf @@ -82,5 +82,6 @@ resource "aws_security_group_rule" "allow_all_out" { protocol = "-1" from_port = 0 security_group_id = aws_security_group.this.id - cidr_blocks = ["0.0.0.0/0","::/0"] + cidr_blocks = ["0.0.0.0/0"] + ipv6_cidr_blocks = ["::/0"] }