Skip to Content
Managing Infrastructure with Puppet
book

Managing Infrastructure with Puppet

by James Loope
June 2011
Beginner
56 pages
1h 13m
English
O'Reilly Media, Inc.
Content preview from Managing Infrastructure with Puppet

Virtual Resources

Resources in Puppet can only be declared once per client configuration. This can make managing resources that relate to multiple configurations complicated. To alleviate this issue, we have the virtual resource. When marked with a @ prefix, a resource can be declared, but not yet applied to the client. When we want to apply it to a particular client, it must be realized first.

I’ve declared three virtual users: bob, alice, and eve, each of which has a different group membership. If I’d like to realize one of these users, I could use the realize User[username] mechanism. It could be tedious to realize each of your users in this fashion. In order to realize virtual resources in groups, specified by their attributes, we can use collections. The last two statements are collections; each is a collection of users defined by their membership in a particular group. The first collection will contain alice and eve and the second will contain all three:

@user { bob: 
    ensure => present,
    groups => [ "mail", "web" ], 
    }

@user { alice: 
    ensure => present,
    groups => [ "db", "web" ],        
    }

@user { eve:
    ensure => present,
    groups => [ "db", "web", "mail", "admin" ],
    }

User <| group == db |>

User <| group == web |>
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Puppet Types and Providers

Puppet Types and Providers

Dan Bode, Nan Liu
Pro Puppet, Second Edition

Pro Puppet, Second Edition

Spencer Krum, William Van Hevelingen, Ben Kero, James Turnbull, Jeffery McCune
Mastering Puppet

Mastering Puppet

Thomas Uphill

Publisher Resources

ISBN: 9781449309671Errata Page