From 351b45c7f13507d477afd66eb571274cd1224b8b Mon Sep 17 00:00:00 2001 From: Viren Nadkarni Date: Wed, 31 Jan 2024 00:49:21 +0530 Subject: [PATCH] EC2: Add availability zones for eu-central-2 (#7281) --- moto/ec2/models/availability_zones_and_regions.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/moto/ec2/models/availability_zones_and_regions.py b/moto/ec2/models/availability_zones_and_regions.py index 77f05b6a1..34475a87e 100644 --- a/moto/ec2/models/availability_zones_and_regions.py +++ b/moto/ec2/models/availability_zones_and_regions.py @@ -228,6 +228,11 @@ class RegionsAndZonesBackend: Zone(region_name="eu-central-1", name="eu-central-1b", zone_id="euc1-az3"), Zone(region_name="eu-central-1", name="eu-central-1c", zone_id="euc1-az1"), ], + "eu-central-2": [ + Zone(region_name="eu-central-2", name="eu-central-2a", zone_id="euc2-az1"), + Zone(region_name="eu-central-2", name="eu-central-2b", zone_id="euc2-az2"), + Zone(region_name="eu-central-2", name="eu-central-2c", zone_id="euc2-az3"), + ], "eu-south-1": [ Zone(region_name="eu-south-1", name="eu-south-1a", zone_id="eus1-az1"), Zone(region_name="eu-south-1", name="eu-south-1b", zone_id="eus1-az2"),