Using Hiera, is it possible to instantiate two classes with different properties?
I know I can do add to my node declaration:
user{'francois':
uid => 1000,
# ...
}
user{'julien':
uid => 1001,
# ...
}
Is there a way to do this from Hiera?