Method: BuildCloud::VPC#initialize

Defined in:
lib/build-cloud/vpc.rb

#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