From 911f24864b82940f8deed0a698823ba9df281f32 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Fri, 15 Apr 2022 03:07:35 +0300
Subject: [PATCH] Lower the number of availability zones used.

I don't care all that much about HA in this setup and I do wish to save
a few bucks when I can, but I do need to AZs in some cases so 2 AZs is
to the way to go.
---
 Terraform/AWS/vpc.tf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Terraform/AWS/vpc.tf b/Terraform/AWS/vpc.tf
index b2d13c6..d235870 100644
--- a/Terraform/AWS/vpc.tf
+++ b/Terraform/AWS/vpc.tf
@@ -66,7 +66,7 @@ output "internet_gateway_name" {
 }
 
 variable "subnet_count" {
-  default     = 3
+  default     = 2
   description = "Number of each private and public subnets."
   type        = number
 }
-- 
GitLab