class CloudFormation

Collect CloudFormation resources

Public Instance Methods

collect() click to toggle source

Returns an array of resources.

# 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