Class: ElasticLoadBalancing

Inherits:
Mapper
  • Object
show all
Defined in:
lib/aws_recon/collectors/elasticloadbalancing.rb

Overview

Collect ELB resources

Constant Summary

Constants inherited from Mapper

Mapper::SINGLE_REGION_SERVICES

Instance Method Summary collapse

Methods inherited from Mapper

#initialize

Constructor Details

This class inherits a constructor from Mapper

Instance Method Details

#collectObject

Returns an array of resources.



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
# File 'lib/aws_recon/collectors/elasticloadbalancing.rb', line 10

def collect
  resources = []

  #
  # describe_load_balancers
  #
  @client.describe_load_balancers.each_with_index do |response, page|
    log(response.context.operation_name, page)

    response.load_balancer_descriptions.each do |elb|
      struct = OpenStruct.new(elb.to_h)
      struct.type = 'load_balancer'
      struct.arn = elb.dns_name
      struct.load_balancer_version = 'v1'

      # describe_load_balancer_policies
      struct.policies = @client
                        .describe_load_balancer_policies({ load_balancer_name: elb.load_balancer_name })
                        .policy_descriptions.map(&:to_h)

      # describe_load_balancer_attributes
      struct.attributes = @client
                          .describe_load_balancer_attributes({ load_balancer_name: elb.load_balancer_name })
                          .load_balancer_attributes.to_h

      # describe_tags
      struct.tags = @client
                    .describe_tags({ load_balancer_names: [elb.load_balancer_name] })
                    .tag_descriptions.map(&:tags)
                    .flatten.map(&:to_h)

      resources.push(struct.to_h)
    end
  end

  resources
end