Skip to content

Instantly share code, notes, and snippets.

@ody
Created June 6, 2012 21:21
Show Gist options
  • Save ody/2884875 to your computer and use it in GitHub Desktop.
Save ody/2884875 to your computer and use it in GitHub Desktop.
ldap_entry { 'uid=cody,ou=people,dc=puppetlabs,dc=net':
ensure => present,
objectclass => [
'organizationalPerson',
'inetOrgPerson',
'posixAccount',
'person',
],
attributes => {
'employeeNumber' => '10000000001',
'sn' => 'Herriges',
'l' => 'Portland',
'gidNumber' => '1000000001',
'mail' => 'cody@puppetlabs.com',
'telephoneNumber' => '503-555-1234',
'givenName' => 'Cody',
'uid' => 'cody',
'uidNumber' => '1000000001',
'businessCategory' => 'Operations',
'cn' => 'Cody Herriges',
'st' => 'Oregon',
'homeDirectory' => '/home/cody',
'userPassword' => '{SSHA}mHuHoMiy1Bm4nRHDBwVjkyKnvUJVdorEdP9LXQ==',
'title' => 'Operations Engineer',
},
admin_dn => 'uid=admin,ou=system',
admin_pw => 'foobar',
server => 'ldap-module.vm.vmware',
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment