blob: e3e5c1f14de3aafafa5cd89306d9785292521e45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# encoding: utf-8
#
# A class for the cloud.json file
#
# Example format:
#
# {
# "my_aws": {
# "api": "aws",
# "vendor": "aws",
# "auth": {
# "region": "us-west-2",
# "aws_access_key_id": "xxxxxxxxxxxxxxx",
# "aws_secret_access_key": "xxxxxxxxxxxxxxxxxxxxxxxxxx"
# },
# "default_image": "ami-98e114f8",
# "default_options": {
# "InstanceType": "t2.nano"
# }
# }
# }
#
module LeapCli; module Config
# http://fog.io/about/supported_services.html
VM_APIS = {
'aws' => 'fog-aws',
'google' => 'fog-google',
'libvirt' => 'fog-libvirt',
'openstack' => 'fog-openstack',
'rackspace' => 'fog-rackspace'
}
class Cloud < Hash
def initialize(env=nil)
end
#
# returns hash, each key is the name of an API that is
# needed and the value is the name of the gem.
#
# only provider APIs that are required because they are present
# in cloud.json are included.
#
def required_gems
required = {}
self.each do |name, conf|
api = conf["api"]
required_gems[api] = VM_APIS[api]
end
return required
end
#
# returns an array of all possible providers
#
def possible_apis
VM_APIS.keys
end
end
end; end
|