Skip to content

Commit

Permalink
Add us-east-1f support
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Palmer committed Jul 24, 2017
1 parent e8afb5b commit f87f9d5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/java/com/netflix/ice/tag/Zone.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ private Zone (Region region, String name) {
public static final Zone US_EAST_1C = new Zone(Region.US_EAST_1, "us-east-1c");
public static final Zone US_EAST_1D = new Zone(Region.US_EAST_1, "us-east-1d");
public static final Zone US_EAST_1E = new Zone(Region.US_EAST_1, "us-east-1e");
public static final Zone US_EAST_1F = new Zone(Region.US_EAST_1, "us-east-1f");

public static final Zone US_EAST_2A = new Zone(Region.US_EAST_2, "us-east-2a");
public static final Zone US_EAST_2B = new Zone(Region.US_EAST_2, "us-east-2b");
Expand Down Expand Up @@ -100,6 +101,7 @@ private Zone (Region region, String name) {
zonesByName.put(US_EAST_1C.name, US_EAST_1C);
zonesByName.put(US_EAST_1D.name, US_EAST_1D);
zonesByName.put(US_EAST_1E.name, US_EAST_1E);
zonesByName.put(US_EAST_1F.name, US_EAST_1F);

zonesByName.put(US_EAST_2A.name, US_EAST_2A);
zonesByName.put(US_EAST_2B.name, US_EAST_2B);
Expand Down

0 comments on commit f87f9d5

Please sign in to comment.