Created
June 15, 2017 12:06
-
-
Save hlindberg/d7da67e3ba056be351d60597044cd91d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function mymodule::my_privates ( | |
Variant[String, Numeric] $key, | |
Hash $options, | |
Puppet::LookupContext $context, | |
) { | |
case $key { | |
'mymodule::secret1' : { Sensitive('There is no Santa on the evening coach') } | |
'mymodule::secret2' : { Sensitive('All your base are belong to us') } | |
default: { $context.not_found } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment