Forge Home

krb5

Manage a krb5.keytab and the krb5.conf file

8,730 downloads

8,730 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.

Support the Puppet Community by contributing to this module

You are welcome to contribute to this module by suggesting new features, currency updates, or fixes. Every contribution is valuable to help ensure that the module remains compatible with the latest Puppet versions and continues to meet community needs. Complete the following steps:

  1. Review the module’s contribution guidelines and any licenses. Ensure that your planned contribution aligns with the author’s standards and any legal requirements.
  2. Fork the repository on GitHub, make changes on a branch of your fork, and submit a pull request. The pull request must clearly document your proposed change.

For questions about updating the module, contact the module’s author.

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