Add us-west-2 region for project creation.

This is one of 2 regions that AWS Lambda is publicly available in.
This commit is contained in:
Aaron Boushley 2015-09-14 10:01:41 -07:00
parent 0cea5864bd
commit c19c549689

View File

@ -212,6 +212,7 @@ CMD.prototype._prompt = Promise.method(function() {
var choices = [
{ key: '', label: 'us-east-1', value: 'us-east-1' },
{ key: '', label: 'us-west-1', value: 'us-west-1' },
{ key: '', label: 'us-west-2', value: 'us-west-2' },
{ key: '', label: 'eu-west-1', value: 'eu-west-1' },
{ key: '', label: 'ap-northeast-1', value: 'ap-northeast-1' },
];
@ -451,4 +452,4 @@ CMD.prototype._createProjectJson = Promise.method(function(cfData) {
+ '" has been successfully created in the current directory.');
return jawsJson;
});
});