From 4ef547a83b07ed18fbff48832e8f7498653cf824 Mon Sep 17 00:00:00 2001 From: "jonathan.kerr" Date: Fri, 2 Jun 2023 11:36:37 +0100 Subject: [PATCH] Reduce to one Availability Zone This should further reduce costs --- mentor_match_infra/mentor_match_infra/mentor_match_stack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mentor_match_infra/mentor_match_infra/mentor_match_stack.py b/mentor_match_infra/mentor_match_infra/mentor_match_stack.py index d64e5e5..8d22698 100644 --- a/mentor_match_infra/mentor_match_infra/mentor_match_stack.py +++ b/mentor_match_infra/mentor_match_infra/mentor_match_stack.py @@ -93,7 +93,7 @@ def __init__( DeveloperRole(self, "MentorDev") - vpc = ec2.Vpc(self, "MentorMatchVPC", max_azs=3) # default is all AZs in region + vpc = ec2.Vpc(self, "MentorMatchVPC", max_azs=1) # default is all AZs in region cluster = ecs.Cluster(self, "MentorMatchCluster", vpc=vpc)