Sha256: dab9676aff36662dc68d63579d1864c9b22c0602bea9587d014b21329a395265
Contents?: true
Size: 528 Bytes
Versions: 8
Compression:
Stored size: 528 Bytes
Contents
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
8 entries across 8 versions & 1 rubygems