I have a question about virtual resources in puppet. If I have:
class foo::virtual
{
define foo () {
custom_resource { $name:
<attributes>,
}
}
@foo { '1st_foo':
<attributes>,
}
}
I can realize(Foo::Virtual::Foo['1st_foo']) in a node declaration.
However, I would like to extract the specification of each virtual foo into a separate location, somewhere apart from the specification of class foo::virtual and define foo().
By way of analogy, I have a class called common::data that provides default values for various variables:
class common::data {
$barList = [ 'a','b','z']
}
Is there some way I can declare @foo { '2nd_foo': } from within common::data? And then refer to that in a node declaration?