Sha256: aa54dbf478b67ed1e03f72db72db6efe9440b6aafc4b06763c831998f04bab3a
Contents?: true
Size: 1.27 KB
Versions: 7
Compression:
Stored size: 1.27 KB
Contents
require 'pathname' require 'set' module Aws module Log class ParamFilter # A managed list of sensitive parameters that should be filtered from # logs. This is updated automatically as part of each release. See the # `tasks/sensitive.rake` for more information. # # ** DO NOT EDIT THE FOLLOWING LINE OF CODE ** # SENSITIVE = [:admin_contact, :artifact_credentials, :auth_code, :base_32_string_seed, :copy_source_sse_customer_key, :new_password, :old_password, :password, :plaintext, :private_key, :qr_code_png, :registrant_contact, :secret_access_key, :shared_secret, :sse_customer_key, :ssekms_key_id, :tech_contact, :username] def initialize(options = {}) @filters = Set.new(SENSITIVE + Array(options[:filter])) end def filter(value) case value when Struct, Hash then filter_hash(value) when Array then filter_array(value) else value end end private def filter_hash(values) filtered = {} values.each_pair do |key, value| filtered[key] = @filters.include?(key) ? '[FILTERED]' : filter(value) end filtered end def filter_array(values) values.map { |value| filter(value) } end end end end
Version data entries
7 entries across 7 versions & 1 rubygems