Sha256: 919d24125716241fd87de59fef3a0e6f973306abdb436671d68ebeaa8c492003

Contents?: true

Size: 1.46 KB

Versions: 59

Compression:

Stored size: 1.46 KB

Contents

#
# Author:: Marc Paradise (<marc@chef.io>)
# Copyright:: Copyright (c) Chef Software Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require_relative "base"

class Chef
  # == Chef::SecretFetcher::Example
  # A simple implementation of a secrets fetcher.
  # It expects to be initialized with a hash of
  # keys and secret values.
  #
  # Usage Example:
  #
  # fetcher = SecretFetcher.for_service(:example, "secretkey1" => { "secret" => "lives here" })
  # fetcher.fetch("secretkey1")
  class SecretFetcher
    class Example < Base
      def validate!
        if config.class != Hash
          raise Chef::Exceptions::Secret::ConfigurationInvalid.new("The Example fetcher requires a hash of secrets")
        end
      end

      def do_fetch(identifier, version)
        raise Chef::Exceptions::Secret::FetchFailed.new("Secret #{identifier}) not found.") unless config.key?(identifier)

        config[identifier]
      end
    end
  end
end

Version data entries

59 entries across 59 versions & 1 rubygems

Version Path
chef-18.2.7 lib/chef/secret_fetcher/example.rb
chef-18.1.29 lib/chef/secret_fetcher/example.rb
chef-18.1.29-x64-mingw-ucrt lib/chef/secret_fetcher/example.rb
chef-18.1.0-x64-mingw-ucrt lib/chef/secret_fetcher/example.rb
chef-18.1.0 lib/chef/secret_fetcher/example.rb
chef-18.0.185-x64-mingw-ucrt lib/chef/secret_fetcher/example.rb
chef-18.0.185 lib/chef/secret_fetcher/example.rb
chef-18.0.169-x64-mingw-ucrt lib/chef/secret_fetcher/example.rb
chef-18.0.169 lib/chef/secret_fetcher/example.rb
chef-17.10.0-universal-mingw32 lib/chef/secret_fetcher/example.rb
chef-17.10.0 lib/chef/secret_fetcher/example.rb
chef-17.9.52-universal-mingw32 lib/chef/secret_fetcher/example.rb
chef-17.9.52 lib/chef/secret_fetcher/example.rb
chef-17.9.46-universal-mingw32 lib/chef/secret_fetcher/example.rb
chef-17.9.46 lib/chef/secret_fetcher/example.rb
chef-17.9.42-universal-mingw32 lib/chef/secret_fetcher/example.rb
chef-17.9.42 lib/chef/secret_fetcher/example.rb
chef-17.9.26-universal-mingw32 lib/chef/secret_fetcher/example.rb
chef-17.9.26 lib/chef/secret_fetcher/example.rb
chef-17.9.18-universal-mingw32 lib/chef/secret_fetcher/example.rb