Sha256: 01ec0bcbbe1c20e7d5567805eba1c895a2aecc6ea0df668f3af3c4ac00ef6fca
Contents?: true
Size: 867 Bytes
Versions: 8
Compression:
Stored size: 867 Bytes
Contents
module AWS module EC2 # Which host FQDN will we connect to for all API calls to AWS? # If EC2_URL is defined in the users ENV we can override the default with that. # # @example # export EC2_URL='https://ec2.amazonaws.com' if ENV['EC2_URL'] EC2_URL = ENV['EC2_URL'] VALID_HOSTS = ['https://ec2.amazonaws.com', 'https://us-east-1.ec2.amazonaws.com', 'https://eu-west-1.ec2.amazonaws.com'] raise ArgumentError, "Invalid EC2_URL environment variable : #{EC2_URL}" unless VALID_HOSTS.include?(EC2_URL) DEFAULT_HOST = URI.parse(EC2_URL).host else # Default US API endpoint DEFAULT_HOST = 'ec2.amazonaws.com' end API_VERSION = '2008-12-01' class Base < AWS::Base def api_version API_VERSION end def default_host DEFAULT_HOST end end end end
Version data entries
8 entries across 8 versions & 2 rubygems