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



83
84
85
# File 'lib/build-cloud/vpc.rb', line 83

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

#createObject



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
65
# File 'lib/build-cloud/vpc.rb', line 37

def create
    
    return if exists?

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

    options = @options.dup

    options[:tags] = { 'Name' => options.delete(:name) }

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

    @compute.create_tags( vpc.id, options[:tags] )

    wait_until_ready

    if options[:dhcp_options_set_name]
        dhcp_option_set_id = BuildCloud::DHCPOptionsSet.get_id_by_name( options[:dhcp_options_set_name] )
        @log.info( "Associating DHCP Options Set #{dhcp_option_set_id} with new VPC ID #{vpc.id}" )
        @compute.associate_dhcp_options( dhcp_option_set_id,
                                         vpc.id )
    end

    @log.debug( vpc.inspect )

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

end

#deleteObject



73
74
75
76
77
78
79
80
81
# File 'lib/build-cloud/vpc.rb', line 73

def delete

    return unless exists?

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

    fog_object.destroy

end

#readObject Also known as: fog_object



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

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