From 91aa68a625d2fd0cfe140c1308e97de5b30049a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20MERLE?= <95630726+smerle33@users.noreply.github.com> Date: Tue, 8 Oct 2024 17:24:46 +0200 Subject: [PATCH] hotfix(vpc): wrong network cidr need /8 --- vpc.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vpc.tf b/vpc.tf index 6f54368..82447bc 100644 --- a/vpc.tf +++ b/vpc.tf @@ -11,7 +11,7 @@ module "vpc" { version = "5.13.0" name = "${local.cluster_name}-vpc" - cidr = "10.0.0.0/16" + cidr = "10.0.0.0/8" # dual stack https://github.com/terraform-aws-modules/terraform-aws-vpc/blob/v5.13.0/examples/ipv6-dualstack/main.tf