inspec/lib/inspec/secrets.rb
Miah Johnson a4f4fe5231 chefstyle -a; https://github.com/chef/chefstyle/pull/74
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-07-08 17:22:50 -07:00

15 lines
258 B
Ruby

require "inspec/plugin/v1"
module Inspec
SecretsBackend = PluginRegistry.new
def self.secrets(version)
if version != 1
raise "Only secrets version 1 is supported!"
end
Inspec::Plugins::Secret
end
end
require "inspec/secrets/yaml"