Skip to content

Instantly share code, notes, and snippets.

@robinbowes
Created June 3, 2015 12:51
Show Gist options
  • Save robinbowes/74cf2ddb6bd3c2d26dfb to your computer and use it in GitHub Desktop.
Save robinbowes/74cf2ddb6bd3c2d26dfb to your computer and use it in GitHub Desktop.
Default values in defines
define foo(
$bar = 'UNDEF'
) {
include ::some::config
$real_bar = $bar ? {
'UNDEF' => $::some::config::bar,
default => $bar,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment