mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
13 lines
347 B
Ruby
13 lines
347 B
Ruby
module Fog
|
|
module AWS
|
|
module RegionMethods
|
|
|
|
def validate_aws_region region
|
|
unless ['ap-northeast-1', 'ap-southeast-1', 'ap-southeast-2', 'eu-west-1', 'us-east-1', 'us-west-1', 'us-west-2', 'sa-east-1'].include?(region)
|
|
raise ArgumentError, "Unknown region: #{region.inspect}"
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|