Class: CloudFormation

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

Overview

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

def collect
  resources = []

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

    response.stacks.each do |stack|
      struct = OpenStruct.new(stack.to_h)
      struct.type = 'stack'
      struct.arn = stack.stack_id

      # get_template
      struct.tempate = @client.get_template({ stack_name: stack.stack_name }).to_h
      log(response.context.operation_name, 'get_template', stack.stack_name)

      resources.push(struct.to_h)
    end
  end

  resources
end