1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Nix hardcoded regions: RDS.

This commit is contained in:
Pavel Repin 2012-02-02 14:02:51 -08:00
parent cad849b173
commit b49cbc2199

View file

@ -115,7 +115,7 @@ module Fog
#
# ==== Parameters
# * options<~Hash> - config arguments for connection. Defaults to {}.
# * region<~String> - optional region to use, in ['eu-west-1', 'us-east-1', 'us-west-1', 'us-west-2', 'ap-southeast-1']
# * region<~String> - optional region to use. For instance, 'eu-west-1', 'us-east-1' and etc.
#
# ==== Returns
# * ELB object with connection to AWS.
@ -126,24 +126,7 @@ module Fog
@hmac = Fog::HMAC.new('sha256', @aws_secret_access_key)
options[:region] ||= 'us-east-1'
@host = options[:host] || case options[:region]
when 'ap-northeast-1'
'rds.ap-northeast-1.amazonaws.com'
when 'ap-southeast-1'
'rds.ap-southeast-1.amazonaws.com'
when 'eu-west-1'
'rds.eu-west-1.amazonaws.com'
when 'us-east-1'
'rds.us-east-1.amazonaws.com'
when 'us-west-1'
'rds.us-west-1.amazonaws.com'
when 'us-west-2'
'rds.us-west-2.amazonaws.com'
when 'sa-east-1'
'rds.sa-east-1.amazonaws.com'
else
raise ArgumentError, "Unknown region: #{options[:region].inspect}"
end
@host = options[:host] || "rds.#{options[:region]}.amazonaws.com"
@path = options[:path] || '/'
@persistent = options[:persistent] || false
@port = options[:port] || 443