1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
# frozen_string_literal: true
require_relative '../../../puppet_x/stdlib/toml_dumper'
# @summary Convert a data structure and output to TOML.
Puppet::Functions.create_function(:'stdlib::to_toml') do
# @param data Data structure which needs to be converted into TOML
# @return [String] Converted data as TOML string
# @example How to output TOML to a file
# file { '/tmp/config.toml':
# ensure => file,
# content => stdlib::to_toml($myhash),
# }
dispatch :to_toml do
required_param 'Hash', :data
return_type 'String'
end
def to_toml(data)
PuppetX::Stdlib::TomlDumper.new(data).toml_str
end
end
|