Class: Terrafying::Components::VPC

Inherits:
Terrafying::Context
  • Object
show all
Defined in:
lib/terrafying/components/vpc.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeVPC

Returns a new instance of VPC.



25
26
27
# File 'lib/terrafying/components/vpc.rb', line 25

def initialize
  super
end

Instance Attribute Details

#azsObject (readonly)

Returns the value of attribute azs.



15
16
17
# File 'lib/terrafying/components/vpc.rb', line 15

def azs
  @azs
end

#cidrObject (readonly)

Returns the value of attribute cidr.



15
16
17
# File 'lib/terrafying/components/vpc.rb', line 15

def cidr
  @cidr
end

#idObject (readonly)

Returns the value of attribute id.



15
16
17
# File 'lib/terrafying/components/vpc.rb', line 15

def id
  @id
end

#internal_ssh_security_groupObject (readonly)

Returns the value of attribute internal_ssh_security_group.



15
16
17
# File 'lib/terrafying/components/vpc.rb', line 15

def internal_ssh_security_group
  @internal_ssh_security_group
end

#nameObject (readonly)

Returns the value of attribute name.



15
16
17
# File 'lib/terrafying/components/vpc.rb', line 15

def name
  @name
end

#ssh_groupObject (readonly)

Returns the value of attribute ssh_group.



15
16
17
# File 'lib/terrafying/components/vpc.rb', line 15

def ssh_group
  @ssh_group
end

#subnetsObject (readonly)

Returns the value of attribute subnets.



15
16
17
# File 'lib/terrafying/components/vpc.rb', line 15

def subnets
  @subnets
end

#zoneObject (readonly)

Returns the value of attribute zone.



15
16
17
# File 'lib/terrafying/components/vpc.rb', line 15

def zone
  @zone
end

Class Method Details

.create(name, cidr, options = {}) ⇒ Object



21
22
23
# File 'lib/terrafying/components/vpc.rb', line 21

def self.create(name, cidr, options = {})
  VPC.new.create name, cidr, options
end

.find(name) ⇒ Object



17
18
19
# File 'lib/terrafying/components/vpc.rb', line 17

def self.find(name)
  VPC.new.find name
end

Instance Method Details

#allocate_subnets!(name, options = {}) ⇒ Object



357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
# File 'lib/terrafying/components/vpc.rb', line 357

def allocate_subnets!(name, options = {})
  options = {
    public: false,
    bit_size: @subnet_size,
    internet: true,
    tags: {}
  }.merge(options)

  gateways = if options[:public]
               [@internet_gateway] * @azs.count
             elsif options[:internet] && !@nat_gateways.nil?
               @nat_gateways
             else
               [nil] * @azs.count
             end

  @subnets[name] = @azs.zip(gateways).map do |az, gateway|
    subnet_options = { tags: { subnet_name: name }.merge(options[:tags]).merge(@tags) }
    unless gateway.nil?
      if options[:public]
        subnet_options[:gateway] = gateway
      elsif options[:internet]
        subnet_options[:nat_gateway] = gateway
      end
    end

    add! Terrafying::Components::Subnet.create_in(
      self, name, az, extract_subnet!(options[:bit_size]), subnet_options
    )
  end
end

#create(name, raw_cidr, options = {}) ⇒ Object



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
# File 'lib/terrafying/components/vpc.rb', line 71

def create(name, raw_cidr, options = {})
  options = {
    subnet_size: 24,
    internet_access: true,
    nat_eips: [],
    azs: aws.availability_zones,
    tags: {},
    ssh_group: DEFAULT_SSH_GROUP
  }.merge(options)

  if options[:parent_zone].nil?
    options[:parent_zone] = Zone.find(DEFAULT_ZONE)
  end

  if options[:subnets].nil?
    options[:subnets] = if options[:internet_access]
                          {
                            public: { public: true },
                            private: { internet: true }
                          }
                        else
                          {
                            private: {}
                          }
                        end
  end

  @name = name
  @cidr = raw_cidr
  @azs = options[:azs]
  @tags = options[:tags]
  @ssh_group = options[:ssh_group]

  cidr = NetAddr::CIDR.create(raw_cidr)

  @remaining_ip_space = NetAddr::Tree.new
  @remaining_ip_space.add! cidr
  @subnet_size = options[:subnet_size]
  @subnets = {}

  per_az_subnet_size = options[:subnets].values.reduce(0) do |memo, s|
    memo + (1 << (32 - s.fetch(:bit_size, @subnet_size)))
  end
  total_subnet_size = per_az_subnet_size * @azs.count

  if total_subnet_size > cidr.size
    raise 'Not enough space for subnets in CIDR'
  end

  @id = resource :aws_vpc, name,
                 cidr_block: cidr.to_s,
                 enable_dns_hostnames: true,
                 tags: { Name: name, ssh_group: @ssh_group }.merge(@tags)

  @zone = add! Terrafying::Components::Zone.create("#{name}.#{options[:parent_zone].fqdn}",
                                                   parent_zone: options[:parent_zone],
                                                   tags: { vpc: @id }.merge(@tags))

  dhcp = resource :aws_vpc_dhcp_options, name,
                  domain_name: @zone.fqdn,
                  domain_name_servers: ['AmazonProvidedDNS'],
                  tags: { Name: name }.merge(@tags)

  resource :aws_vpc_dhcp_options_association, name,
           vpc_id: @id,
           dhcp_options_id: dhcp

  if options[:internet_access]

    if options[:nat_eips].empty?
      options[:nat_eips] = @azs.map { |az| resource :aws_eip, "#{name}-nat-gateway-#{az}", vpc: true }
    elsif options[:nat_eips].size != @azs.count
      raise 'The nubmer of nat eips has to match the number of AZs'
    end

    @internet_gateway = resource :aws_internet_gateway, name,
                                 vpc_id: @id,
                                 tags: {
                                   Name: name
                                 }.merge(@tags)
    allocate_subnets!(:nat_gateway, bit_size: 28, public: true)

    @nat_gateways = @azs.zip(@subnets[:nat_gateway], options[:nat_eips]).map do |az, subnet, eip|
      resource :aws_nat_gateway, "#{name}-#{az}",
               allocation_id: eip,
               subnet_id: subnet.id
    end

  end

  options[:subnets].each { |key, config| allocate_subnets! key, config }

  @internal_ssh_security_group = resource :aws_security_group, "#{name}-internal-ssh",
                                          name: "#{name}-internal-ssh",
                                          description: 'Allows SSH between machines inside the VPC CIDR',
                                          tags: @tags,
                                          vpc_id: @id,
                                          ingress: [
                                            {
                                              from_port: 22,
                                              to_port: 22,
                                              protocol: 'tcp',
                                              cidr_blocks: [@cidr]
                                            }
                                          ],
                                          egress: [
                                            {
                                              from_port: 22,
                                              to_port: 22,
                                              protocol: 'tcp',
                                              cidr_blocks: [@cidr]
                                            }
                                          ]
  self
end

#extract_subnet!(bit_size) ⇒ Object



331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
# File 'lib/terrafying/components/vpc.rb', line 331

def extract_subnet!(bit_size)
  bit_size = 28 if bit_size > 28 # aws can't have smaller

  targets = @remaining_ip_space.find_space(Subnet: bit_size)

  if targets.count == 0
    raise "Run out of ip space to allocate a /#{bit_size}"
  end

  target = targets[0]

  @remaining_ip_space.delete!(target)

  if target.bits == bit_size
    new_subnet = target
  else
    new_subnet = target.subnet(Bits: bit_size, Objectify: true)[0]

    target.remainder(new_subnet).each do |rem|
      @remaining_ip_space.add!(rem)
    end
  end

  new_subnet.to_s
end

#find(name) ⇒ Object



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
65
66
67
68
69
# File 'lib/terrafying/components/vpc.rb', line 29

def find(name)
  vpc = aws.vpc(name)

  @name = name
  @id = vpc.vpc_id
  @cidr = vpc.cidr_block
  @tags = {}
  @zone = Terrafying::Components::Zone.find_by_tag(vpc: @id)
  raise 'Failed to find zone' if @zone.nil?

  @subnets = aws.subnets_for_vpc(vpc.vpc_id).each_with_object({}) do |subnet, subnets|
    subnet_inst = Subnet.find(subnet.subnet_id)

    subnet_name_tag = subnet.tags.detect { |tag| tag.key == 'subnet_name' }

    key = if subnet_name_tag
            subnet_name_tag.value.to_sym
          else
            subnet_inst.public ? :public : :private
          end

    if subnets.key?(key)
      subnets[key] << subnet_inst
    else
      subnets[key] = [subnet_inst]
    end
  end

  # need to sort subnets so they are in az order
  @subnets.each { |_, s| s.sort! { |a, b| a.az <=> b.az } }

  tags = vpc.tags.select { |tag| tag.key == 'ssh_group' }
  @ssh_group = if tags.count > 0
                 tags[0].value
               else
                 DEFAULT_SSH_GROUP
               end

  @internal_ssh_security_group = aws.security_group("#{tf_safe(name)}-internal-ssh")
  self
end

#peer_with(other_vpc, options = {}) ⇒ Object



279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
# File 'lib/terrafying/components/vpc.rb', line 279

def peer_with(other_vpc, options = {})
  options = {
    complete: false,
    peerings: [
      { from: @subnets.values.flatten, to: other_vpc.subnets.values.flatten },
      { from: other_vpc.subnets.values.flatten, to: @subnets.values.flatten }
    ]
  }.merge(options)

  other_vpc_ident = tf_safe(other_vpc.name)

  our_cidr = NetAddr::CIDR.create(@cidr)
  other_cidr = NetAddr::CIDR.create(other_vpc.cidr)
  if our_cidr.contains?(other_cidr[0]) || our_cidr.contains?(other_cidr.last)
    raise 'VPCs to be peered have overlapping CIDRs'
  end

  peering_connection = resource :aws_vpc_peering_connection, "#{@name}-to-#{other_vpc_ident}",
                                peer_vpc_id: other_vpc.id,
                                vpc_id: @id,
                                auto_accept: true,
                                tags: { Name: "#{@name} to #{other_vpc.name}" }.merge(@tags)

  if options[:complete]
    our_route_tables = @subnets.values.flatten.map(&:route_table).sort.uniq
    their_route_tables = other_vpc.subnets.values.flatten.map(&:route_table).sort.uniq

    (our_route_tables.product([other_vpc.cidr]) + their_route_tables.product([@cidr])).each do |route_table, cidr|
      hash = Digest::SHA2.hexdigest "#{route_table}-#{tf_safe(cidr)}"

      resource :aws_route, "#{@name}-#{other_vpc_ident}-peer-#{hash}",
               route_table_id: route_table,
               destination_cidr_block: cidr,
               vpc_peering_connection_id: peering_connection
    end
  else
    options[:peerings].each.with_index do |peering, _i|
      route_tables = peering[:from].map(&:route_table).sort.uniq
      cidrs = peering[:to].map(&:cidr).sort.uniq

      route_tables.product(cidrs).each do |route_table, cidr|
        hash = Digest::SHA2.hexdigest "#{route_table}-#{tf_safe(cidr)}"

        resource :aws_route, "#{@name}-#{other_vpc_ident}-peer-#{hash}",
                 route_table_id: route_table,
                 destination_cidr_block: cidr,
                 vpc_peering_connection_id: peering_connection
      end
    end
  end
end

#peer_with_external(account_id, vpc_id, cidrs, options = {}) ⇒ Object



187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
# File 'lib/terrafying/components/vpc.rb', line 187

def peer_with_external(, vpc_id, cidrs, options = {})
  options = {
    region: 'eu-west-1',
    subnets: @subnets.values.flatten
  }.merge(options)

  peering_connection = resource :aws_vpc_peering_connection, "#{@name}-to-#{}-#{vpc_id}",
                                peer_owner_id: ,
                                peer_vpc_id: vpc_id,
                                peer_region: options[:region],
                                vpc_id: @id,
                                auto_accept: false,
                                tags: { Name: "#{@name} to #{}.#{vpc_id}" }.merge(@tags)

  our_route_tables = options[:subnets].map(&:route_table).sort.uniq

  our_route_tables.product(cidrs).each do |route_table, cidr|
    hash = Digest::SHA2.hexdigest "#{route_table}-#{tf_safe(cidr)}"

    resource :aws_route, "#{@name}-to-#{}-#{vpc_id}-peer-#{hash}",
             route_table_id: route_table,
             destination_cidr_block: cidr,
             vpc_peering_connection_id: peering_connection
  end
end

#peer_with_vpn(ip_address, cidrs, options = {}) ⇒ Object



213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
# File 'lib/terrafying/components/vpc.rb', line 213

def peer_with_vpn(ip_address, cidrs, options = {})
  options = {
    bgp_asn: 65_000,
    type: 'ipsec.1',
    tunnels: [],
    static_routes_only: true,
    subnets: @subnets.values.flatten
  }.merge(options)

  ident = tf_safe(ip_address)

  if options[:tunnels].count > 2
    raise 'You can only define a max of two tunnels'
  end

  customer_gateway = resource :aws_customer_gateway, ident,
                              bgp_asn: options[:bgp_asn],
                              ip_address: ip_address,
                              type: options[:type],
                              tags: {
                                Name: "Connection to #{ip_address}"
                              }.merge(@tags)

  vpn_gateway = resource :aws_vpn_gateway, ident,
                         vpc_id: @id,
                         tags: {
                           Name: "Connection to #{ip_address}"
                         }.merge(@tags)

  connection_config = {
    vpn_gateway_id: vpn_gateway,
    customer_gateway_id: customer_gateway,
    type: options[:type],
    static_routes_only: options[:static_routes_only],
    tags: {
      Name: "Connection to #{ip_address}"
    }.merge(@tags)
  }

  options[:tunnels].each.with_index do |tunnel, i|
    connection_config["tunnel#{i + 1}_inside_cidr"] = tunnel[:cidr]

    if tunnel.key?(:key)
      connection_config["tunnel#{i + 1}_preshared_key"] = tunnel[:key]
    end
  end

  connection = resource :aws_vpn_connection, ident, connection_config

  cidrs.each do |cidr|
    resource :aws_vpn_connection_route, "#{ident}-#{tf_safe(cidr)}",
             destination_cidr_block: cidr,
             vpn_connection_id: connection
  end

  route_tables = options[:subnets].map(&:route_table).sort.uniq
  route_tables.product(cidrs).each do |route_table, cidr|
    hash = Digest::SHA2.hexdigest "#{route_table}-#{tf_safe(cidr)}"

    resource :aws_route, "#{@name}-to-#{ident}-peer-#{hash}",
             route_table_id: route_table,
             destination_cidr_block: cidr,
             gateway_id: vpn_gateway
  end
end