On Sunday, November 17, 2013 6:50:03 PM UTC-6, jc.listmail wrote: > > I have a parent class, a child class, and a defined type, like so: > > *init.pp*: > class parent { > create_resources(parent::versions, hiera('versions')) > ... > } > > *versions.pp:* > define parent::versions($version) { > } > > *child.pp*: > class parent::child { > include parent > > notify{ "${version}": } > } > > (I'm omitting the hiera definition since I don't think it relates to the > issue). > > Basically, I'm trying to figure out how to access variables from a child > class, that have been defined in the parent via create_resources. > >
You cannot by any means access parameters of declared resources from outside those resources, regardless of the mechanism by which those resources are declared. You can, however, access *class variables* from anywhere, provided that the class has been declared. Simply use the variable's fully-qualified name, such as $parent::version. > According to the documentation I read, I think this can be done: > > Variables and defaults declared in a local scope are only available in *that > scope and its children* > > That statement appears to come from this doc: http://docs.puppetlabs.com/puppet/3/reference/lang_scope.html. I suggest you read the whole thing, but the bottom line for this case is that the only child scopes of class body local scopes are the bodies of other classes that inherit from it. John -- 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/009772b9-cf5c-4564-b8ad-1e5c881af60c%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.