Dan Bode wrote:
> This function allows you to dynamically generate resources,
> passing them as a hash to the create_resources function.
> 
> This was originally written to be used together with an ENC.
> 
> Resources can be programitally generated as yaml and passed to a class.
> 
> classes:
>   webserver::instances:
>     instances:
>       instance1:
>         foo: bar
>       instance2:
>         foo: blah
> 
> Then puppet code can consume the hash parameters and convert then into 
> resources
> 
> class webserver::instances (
>   $instances = {}
> ) {
>   create_resources('webserver::instance', $instances)
> }
> 
> Now I can dynamically determine how webserver instances are deployed to nodes
> by updating the YAML files.
> 

I'd put some of the docs from the commit msg into the actual docs in the
function.

Cheers

James

-- 
James Turnbull
Puppet Labs
1-503-734-8571

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Developers" group.
To post to this group, send email to puppet-dev@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-dev+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-dev?hl=en.

Reply via email to