Class: ElasticsearchService
- Defined in:
- lib/aws_recon/collectors/elasticsearch.rb
Overview
Collect ElasticSearch resources
Constant Summary
Constants inherited from Mapper
Mapper::SINGLE_REGION_SERVICES
Instance Method Summary collapse
-
#collect ⇒ Object
Returns an array of resources.
Methods inherited from Mapper
Constructor Details
This class inherits a constructor from Mapper
Instance Method Details
#collect ⇒ Object
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 |
# File 'lib/aws_recon/collectors/elasticsearch.rb', line 10 def collect resources = [] # # list_domain_names # @client.list_domain_names.each_with_index do |response, page| log(response.context.operation_name, page) response.domain_names.each do |domain| log(response.context.operation_name, 'describe_elasticsearch_domain', page) # describe_elasticsearch_domains struct = OpenStruct.new(@client.describe_elasticsearch_domain({ domain_name: domain.domain_name }).domain_status.to_h) struct.type = 'domain' struct.access_policies = struct.access_policies&.parse_policy resources.push(struct.to_h) end end resources end |