From b17078325e0bfc213f406b1fc9b0a3ebfe51f758 Mon Sep 17 00:00:00 2001 From: "jonathan.kerr" Date: Fri, 2 Jun 2023 11:42:42 +0100 Subject: [PATCH] Need at least two availability zones --- 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 8d22698..27813ae 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=1) # default is all AZs in region + vpc = ec2.Vpc(self, "MentorMatchVPC", max_azs=2) # default is all AZs in region cluster = ecs.Cluster(self, "MentorMatchCluster", vpc=vpc)