Skip to content

Instantly share code, notes, and snippets.

@pbrandiezs
Created November 30, 2018 22:32
Show Gist options
  • Save pbrandiezs/e6067a393e04546ab2140f43884c35ae to your computer and use it in GitHub Desktop.
Save pbrandiezs/e6067a393e04546ab2140f43884c35ae to your computer and use it in GitHub Desktop.
Puppet example of iterating through using each
$values = ['aaa', 'bbb', 'ccc', 'ddd']
$values.each | String $value | {
notify { $value:
message => "Value is ${value}"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment