I am trying to figure out if parameterized variables can be displayed when 
hovering over the appropriate section in an ENC. At the moment, I am 
playing with PE 3.3 with it's console/dashboard and my previous experience 
was with puppet 2.6.x and Foreman.

Simplified example, module resolv

# resolv/manifests/init.pp
class resolv (
  $ns1 = $resolv::params::ns1,
  ) inherits resolv::params {
  include resolv::config
}

# resolv/manifests/params.pp
class resolv::params {
  $ns1 = '192.168.0.1'
}

So when I am editing a node and adding an override in the puppet dashboard 
(ENC), I hover over the box $ns1 where I can override the value and it 
shows me what I will get if I don't override, which is 'default: 
$ns1::params::ns1' which is absolutely meaningless at that point and I was 
hoping it would show the assignment from params.pp

Is this just something I can't fix or am I misunderstanding how to use 
parameterized variables?

Craig

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/00163866-f938-41bd-a64a-143ea2b9840f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to