Skip to content

Commit

Permalink
Fix Osaka region problem (#3751)
Browse files Browse the repository at this point in the history
  • Loading branch information
gruebel authored Mar 5, 2021
1 parent b6cb286 commit ac0b4bb
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions moto/ec2/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1778,21 +1778,41 @@ class RegionsAndZonesBackend(object):
"ap-northeast-3": [
Zone(
region_name="ap-northeast-3",
name="ap-northeast-2a",
name="ap-northeast-3a",
zone_id="apne3-az1",
)
),
Zone(
region_name="ap-northeast-3",
name="ap-northeast-3b",
zone_id="apne3-az2",
),
Zone(
region_name="ap-northeast-3",
name="ap-northeast-3c",
zone_id="apne3-az3",
),
],
"ap-northeast-2": [
Zone(
region_name="ap-northeast-2",
name="ap-northeast-2a",
zone_id="apne2-az1",
),
Zone(
region_name="ap-northeast-2",
name="ap-northeast-2b",
zone_id="apne2-az2",
),
Zone(
region_name="ap-northeast-2",
name="ap-northeast-2c",
zone_id="apne2-az3",
),
Zone(
region_name="ap-northeast-2",
name="ap-northeast-2d",
zone_id="apne2-az4",
),
],
"ap-northeast-1": [
Zone(
Expand Down

0 comments on commit ac0b4bb

Please sign in to comment.