Re: [Puppet Users] access variable inside module which was declared at inside profile
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
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