[Puppet Users] Re: Mixing hiera and site.pp

2015-08-07 Thread Tony Thayer
I work around this by creating wrapper classes that pull in my hiera data. example: class my_apache_config_module ( $this_hostname = hiera('this_hostname') ){ apache::vhost { $this_hostname: blah => "blah blah" } } On Wednesday, August 5, 2015 at 5:25:09 AM UTC-7, Alexander Dacre wrote:

[Puppet Users] Re: Mixing hiera and site.pp

2015-08-06 Thread jcbollinger
On Wednesday, August 5, 2015 at 7:25:09 AM UTC-5, Alexander Dacre wrote: > > Hi, > > I'm going through an initial deployment of Puppet and was looking to use > hiera as much as possible, but it seems that many existing modules do not > have hiera support. > > The question I have is, is it 'OK'