Skip to content

Commit 8eed09f

Browse files
committed
Added ap-south-1 region to setup
1 parent 14272e3 commit 8eed09f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup-file.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ var rl = {
5353
var qs = [];
5454

5555
q_region = function(callback) {
56-
var regionsArray = [ "ap-northeast-1", "ap-northeast-2", "ap-southeast-1", "ap-southeast-2", "eu-central-1", "eu-west-1", "sa-east-1", "us-east-1", "us-east-2", "us-west-1", "us-west-2" ];
56+
var regionsArray = [ "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-southeast-1", "ap-southeast-2", "eu-central-1", "eu-west-1", "sa-east-1", "us-east-1", "us-east-2", "us-west-1", "us-west-2" ];
5757
// region for the configuration
5858
if (common.blank(setupConfig.region) !== null) {
5959
common.validateArrayContains(regionsArray, setupConfig.region.toLowerCase(), rl);

setup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ var qs = [];
5555
q_region = function(callback) {
5656
rl.question('Enter the Region for the Configuration > ', function(answer) {
5757
if (common.blank(answer) !== null) {
58-
common.validateArrayContains([ "ap-northeast-1", "ap-northeast-2", "ap-southeast-1", "ap-southeast-2", "eu-central-1", "eu-west-1", "sa-east-1", "us-east-1", "us-east-2", "us-west-1", "us-west-2" ], answer
58+
common.validateArrayContains([ "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-southeast-1", "ap-southeast-2", "eu-central-1", "eu-west-1", "sa-east-1", "us-east-1", "us-east-2", "us-west-1", "us-west-2" ], answer
5959
.toLowerCase(), rl);
6060

6161
setRegion = answer.toLowerCase();

0 commit comments

Comments
 (0)