From c19c549689e2ed6e7760ac930c00dedbd88478f8 Mon Sep 17 00:00:00 2001 From: Aaron Boushley Date: Mon, 14 Sep 2015 10:01:41 -0700 Subject: [PATCH] Add us-west-2 region for project creation. This is one of 2 regions that AWS Lambda is publicly available in. --- lib/commands/new_project.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/commands/new_project.js b/lib/commands/new_project.js index 7f1672482..0a8a521df 100644 --- a/lib/commands/new_project.js +++ b/lib/commands/new_project.js @@ -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; -}); \ No newline at end of file +});