Version information
This version is compatible with:
- RedHat, Debian, Ubuntu
Start using this module
Add this module to your Puppetfile:
mod 'edgester-kerberos', '0.3.1'
Learn more about managing modules with a PuppetfileDocumentation
A puppet module for managing MIT Kerberos clients and servers
License
BSD
Contact
Support
Please log tickets and issues at our Projects site
Example Use
# Kerberos server (kdc and kadmin)
class {'kerberos':
master => true,
realm => 'EXAMPLE.ORG',
kdc_database_password => 'secret',
}
# kerberos client
class {'kerberos':
client => true,
realm => 'EXAMPLE.ORG',
domain_realm => { '.example.org' => 'EXAMPLE.ORG', },
kdcs => ['cellserver.example.org'],
admin_server => 'cellserver.example.org',
allow_weak_crypto => true,
}
Hiera Usage
Define all the main class parameters you'd like to change like this:
kerberos::realm: 'EXAMPLE.ORG'
kerberos::kdcs:
- 'cellserver.example.org'
Forget about client => true
. Just include or hiera_include() any of the
following classes:
kerberos::client
kerberos::kdc::master
kerberos::kdc::slave
It is best to store passwords in Hiera; that way, you can have a set of test credentials, and a different set of credentials for production servers. For example, in debug environments, you might use realmone.local and realmtwo.local instead of realmone.com and realmtwo.com, which of course would cause puppet to pull your configuration from different .yaml files. Debug configuration could be checked in to the repository, and production values could be stored in a more secure location.
###kdc1.realmone.com.yaml:
---
kerberos::principals:
user1:
password: secretsecret
###kdc2.realmtwo.com.yaml:
---
kerberos::principals:
user2:
password: p4ssw0rd!
###production.yaml:
---
kerberos::kdc_database_password: verylongsecurerandomlyproducedpassword
trusted_realms:
realms:
- REALMONE.COM
- REALMTWO.COM
password: differentverylongsecurerandomlyproducedpassword
You can also define a additional [capaths] section or additional realms to your [realms] section with Hiera
###capaths.yaml:
---
kerberos::capaths:
'EXAMPLE.COM':
- 'OTHER-REALM.COM': '.'
'US.EXAMPLE.COM':
- 'OTHER-REALM.COM': 'EXAMPLE.COM'
###extra_realms.yaml:
---
kerberos::extra_realms:
'EXAMPLE.COM':
- 'kdc': 'kdc1.example.com'
- 'kdc': 'kdc2.example.com'
- 'kdc': 'kdc3.example.com'
'OTHER-REALM.COM':
- 'kdc': 'kdc1.other-realm.com'
- 'kdc': 'kdc2.other-realm.com'
Dependencies
- puppetlabs-stdlib (>= 2.2.0)
Copyright (c) 2013, Jason W. Edgecombe All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.