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-17.9.18 lib/chef/secret_fetcher/example.rb
chef-17.8.25-universal-mingw32 lib/chef/secret_fetcher/example.rb
chef-17.8.25 lib/chef/secret_fetcher/example.rb
chef-17.7.29-universal-mingw32 lib/chef/secret_fetcher/example.rb
chef-17.7.29 lib/chef/secret_fetcher/example.rb
chef-17.7.22-universal-mingw32 lib/chef/secret_fetcher/example.rb
chef-17.7.22 lib/chef/secret_fetcher/example.rb
chef-17.6.18-universal-mingw32 lib/chef/secret_fetcher/example.rb
chef-17.6.18 lib/chef/secret_fetcher/example.rb
chef-17.6.15-universal-mingw32 lib/chef/secret_fetcher/example.rb
chef-17.6.15 lib/chef/secret_fetcher/example.rb
chef-17.5.22-universal-mingw32 lib/chef/secret_fetcher/example.rb
chef-17.5.22 lib/chef/secret_fetcher/example.rb
chef-17.4.38-universal-mingw32 lib/chef/secret_fetcher/example.rb
chef-17.4.38 lib/chef/secret_fetcher/example.rb
chef-17.4.25-universal-mingw32 lib/chef/secret_fetcher/example.rb
chef-17.4.25 lib/chef/secret_fetcher/example.rb
chef-17.3.48-universal-mingw32 lib/chef/secret_fetcher/example.rb
chef-17.3.48 lib/chef/secret_fetcher/example.rb