Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions create_cluster.rb
Original file line number Diff line number Diff line change
Expand Up @@ -286,12 +286,13 @@
while datacenter == ''
puts "In which datacenter do you wish to deploy?"
puts " "
puts "1.) NYC3 - New York, NY"
puts "1.) NYC3 - New York, US"
puts "2.) AMS2 - Amsterdam, NE"
puts "3.) LON1 - London, UK"
puts "4.) SGP1 - Singapore"
puts "5.) SFO1 - San Francisco, CA"
puts "5.) SFO1 - San Francisco, US"
puts "6.) FRA1 - Frankfurt, DE"
puts "7.) TOR1 - Toronto, CA"

puts " "
dc_choice = gets.chomp().to_i
Expand All @@ -307,6 +308,8 @@
datacenter = 'sfo1'
elsif dc_choice == 6
datacenter = 'fra1'
elsif dc_choice == 7
datacenter = 'tor1'
else
system("clear")
puts "Invalid Option Selected. Please try again:"
Expand Down