From 9349ee4e7c6c831c5d456e0e28149ad14065102c Mon Sep 17 00:00:00 2001 From: Sourav Kundu Date: Fri, 23 Aug 2024 21:50:12 -0500 Subject: [PATCH] corrected subnet group cidr #4 --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index a21ef38..b61ca5d 100644 --- a/variables.tf +++ b/variables.tf @@ -31,5 +31,5 @@ variable "vpc_cidr" { variable "subnet_cidr" { description = "The CIDR blocks for the subnets." type = list(any) - default = ["12.25.15.0/28", "12.25.15.16/28"] + default = ["15.25.15.0/28", "15.25.15.16/28"] }