Re: [Puppet Users] access variable inside module which was declared at inside profile

2017-01-23 Thread Martin Alfke
You can access other modules variables by using the namespace of the variable as long as the class with the referring variable is known to the catalog compilation (has been included or declared). e.g. # modules/abc/manifests/init.pp class abc { $var = ‘foo’ } # site/profile/manifests/abc.pp c

[Puppet Users] access variable inside module which was declared at inside profile

2017-01-23 Thread java . freak4u
Hi Everyone, Am very new to puppet. Can any one please help me to fix this issue !! I need to access $var1 at inside module folder actually which declared at profile. # /etc/puppetlabs/puppet/environm