Forge Home

krb5

Manage a krb5.keytab and the krb5.conf file

8,637 downloads

8,637 latest version

3.3 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 1.0.0 (latest)
released Sep 11th 2015
This version is compatible with:

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'ceh-krb5', '1.0.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add ceh-krb5
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install ceh-krb5 --version 1.0.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download
Tags: kerberos, krb5, sso

Documentation

ceh/krb5 — version 1.0.0 Sep 11th 2015

puppet-krb5

Overview

This is the kerberos module, you can use this to manage a krb5.keytab and the krb5.conf file

Module Description

This puppet module manages the configuration files required for using kerberos as the authentication mechanism for things like cifs mounts.

To this end, this module has been designed to compliment the puppet-fstab module.

Setup

What Krb5 affects

  • Manages the /etc/krb5.conf file
  • Deploys a /etc/krb5.keytab file

Usage

To create an insance of tomcat

class { 'krb5':
    default_realm => 'AD.NERC.AC.UK',
    keytab        => 'puppet:///puppet_share/keytab.file',
}

krb5::realm { 'AD.NERC.AC.UK':
   kdc            => 'some.ip.address',
   admin_server   => 'some.ip.address',
   default_domain => 'ad.nerc.ac.uk'
}

Limitations

This module has been tested on ubuntu 14.04 lts

Contributors

Christopher Johnson - cjohn@ceh.ac.uk