File: dump_params.rb

package info (click to toggle)
puppet-module-extlib 7.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 420 kB
  • sloc: ruby: 1,035; sh: 15; makefile: 10
file content (33 lines) | stat: -rw-r--r-- 1,181 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true

# @summary this function is used to get a list of parameters passed to or resource.
# @example Passing Parameters from a profile straight though to a base class
#
#    class profile::foobar ($param1, $param2) {
#       class { 'foobar':
#         *                => extlib::dump_params,
#         additional_param => 'foobar',
#       }
#     }
#
# @example Passing parameters directly to a config file.
#
#     class foobar ($app_param1, $app_param2, $class_param1) {
#       file { '/etc/foo/config.yaml':
#         ensure => file,
#         # class param and name are not understoof by the foo app
#         content => extlib::dump_params(['name', 'class_param1']).to_yaml
#       }
#     }
#
Puppet::Functions.create_function(:'extlib::dump_params', Puppet::Functions::InternalFunction) do
  # @param filter_keys an optional parameters of keys to filter out.  default value is set to 'name'
  dispatch :dump_params do
    scope_param
    optional_param 'Array[String[1]]', :filter_keys
  end

  def dump_params(scope, filter_keys = ['name'])
    scope.resource.to_hash.transform_keys(&:to_s).reject { |k, _v| filter_keys.include?(k) }
  end
end