From 1635abef0e77b26e194037b1ddb6c6e94c0c9cf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Ca=C3=B1ero?= <54242962+lucascanero@users.noreply.github.com> Date: Mon, 27 Nov 2023 12:39:02 +0000 Subject: [PATCH] Update global variables.tf --- globals/variables.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/globals/variables.tf b/globals/variables.tf index 3732c8d..8e8a27e 100644 --- a/globals/variables.tf +++ b/globals/variables.tf @@ -23,6 +23,11 @@ variable "subnets_public_vpc" { description = "The list of public subnets for the VPC" } +variable "subnets_private_vpc" { + type = list(string) + description = "The list of private subnets for the VPC" +} + variable "vpc_cidr" { type = string }