Sha256: b49596401060f7020ebbe3fa47aca247828acc15fb5fba932791459dd07275de
Contents?: true
Size: 599 Bytes
Versions: 56
Compression:
Stored size: 599 Bytes
Contents
# frozen_string_literal: true # # Collect Secrets Manager resources # class SecretsManager < Mapper # # Returns an array of resources. # def collect resources = [] # # describe_auto_scaling_groups # @client.list_secrets.each_with_index do |response, page| log(response.context.operation_name, page) response.secret_list.each_with_index do |secret, i| log(response.context.operation_name, i) struct = OpenStruct.new(secret.to_h) struct.type = 'secret' resources.push(struct.to_h) end end resources end end
Version data entries
56 entries across 56 versions & 1 rubygems