Skip to content

Commit

Permalink
DP-257: Fixed spelling mistake in region and added new regions
Browse files Browse the repository at this point in the history
  • Loading branch information
wjgilmore authored and yaroslavmo committed Apr 9, 2021
1 parent e77aa9a commit f4bf00a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/Models/AwsConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,17 @@ protected static function prepareConfigSchemaField(array &$schema)
case 'region':
$schema['type'] = 'picklist';
$schema['values'] = [
['label' => 'US EAST (N Virgina)', 'name' => 'us-east-1'],
['label' => 'US EAST (N Virginia)', 'name' => 'us-east-1'],
['label' => 'US EAST (Ohio)', 'name' => 'us-east-2'],
['label' => 'US WEST (N California)', 'name' => 'us-west-1'],
['label' => 'US WEST (Oregon)', 'name' => 'us-west-2'],
['label' => 'Canada (Central)', 'name' => 'ca-central-1'],
['label' => 'EU (Frankfurt)', 'name' => 'eu-central-1'],
['label' => 'EU (Ireland)', 'name' => 'eu-west-1'],
['label' => 'EU (London)', 'name' => 'eu-west-2'],
['label' => 'EU (Frankfurt)', 'name' => 'eu-central-1'],
['label' => 'EU (Paris)', 'name' => 'eu-west-3'],
['label' => 'EU (Stockholm)', 'name' => 'eu-north-1'],
['label' => 'Middle East (Bahrain)', 'name' => 'me-south-1'],
['label' => 'Asia Pacific (Mumbai)', 'name' => 'ap-south-1'],
['label' => 'Asia Pacific (Singapore)', 'name' => 'ap-southeast-1'],
['label' => 'Asia Pacific (Sydney)', 'name' => 'ap-southeast-2'],
Expand Down Expand Up @@ -78,4 +81,4 @@ protected static function prepareConfigSchemaField(array &$schema)
break;
}
}
}
}

0 comments on commit f4bf00a

Please sign in to comment.