Class: BuildCloud::VPC

Inherits:
Object
  • Object
show all
Includes:
Component
Defined in:
lib/build-cloud/vpc.rb

Constant Summary collapse

@@objects =
[]

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Component

included

Constructor Details

#initialize(fog_interfaces, log, options = {}) ⇒ VPC

Returns a new instance of VPC.



25
26
27
28
29
30
31
32
33
34
35
# File 'lib/build-cloud/vpc.rb', line 25

def initialize ( fog_interfaces, log, options = {} )

    @compute = fog_interfaces[:compute]
    @log     = log
    @options = options

    @log.debug( options.inspect )

    required_options(:cidr_block)

end

Class Method Details

.get_id_by_name(name) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/build-cloud/vpc.rb', line 7

def self.get_id_by_name( name )

    vpc = self.search( :name => name ).first

    unless vpc
        raise "Couldn't get a VPC object for #{name} - is it defined?"
    end

    vpc_fog = vpc.read

    unless vpc_fog
        raise "Couldn't get a VPC fog object for #{name} - is it created?"
    end

    vpc_fog.id

end

Instance Method Details

#[](key) ⇒ Object



68
69
70
# File 'lib/build-cloud/vpc.rb', line 68

def [](key)
    @options[key]
end

#createObject



37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/build-cloud/vpc.rb', line 37

def create
    
    return if exists?

    @log.info( "Creating new VPC for #{@options[:cidr_block]}" )

    vpc = @compute.vpcs.new( @options )
    vpc.save

    @log.debug( vpc.inspect )

    @compute.modify_vpc_attribute( vpc.id, { 'EnableDnsHostnames.Value' => true } )

end

#deleteObject



58
59
60
61
62
63
64
65
66
# File 'lib/build-cloud/vpc.rb', line 58

def delete

    return unless exists?

    @log.info( "Deleting VPC for #{@options[:cidr_block]}" )

    fog_object.destroy

end

#readObject Also known as: fog_object



52
53
54
# File 'lib/build-cloud/vpc.rb', line 52

def read
    @compute.vpcs.select { |v| v.cidr_block == @options[:cidr_block] }.first
end