Class: Chef::SecretFetcher::Example
- Inherits:
-
Base
- Object
- Base
- Chef::SecretFetcher::Example
show all
- Defined in:
- lib/chef/secret_fetcher/example.rb
Instance Attribute Summary
Attributes inherited from Base
#config, #run_context
Instance Method Summary
collapse
Methods inherited from Base
#fetch, #initialize
Instance Method Details
permalink
#do_fetch(identifier, version) ⇒ Object
[View source]
39
40
41
42
43
|
# File 'lib/chef/secret_fetcher/example.rb', line 39
def do_fetch(identifier, version)
raise Chef::Exceptions::Secret::FetchFailed.new("Secret #{identifier}) not found.") unless config.key?(identifier)
config[identifier]
end
|