yubikey
Version information
This version is compatible with:
- ,
Start using this module
Add this module to your Puppetfile:
mod 'ncorrare-yubikey', '1.0.7'
Learn more about managing modules with a PuppetfileDocumentation
ncorrare-yubikey
by Nicolas Corrarello http://nicolas.corrarello.com/
Table of Contents
- Overview
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with yubikey
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
Overview
This module installs, configures and assigns Yubikeys in a system.
Module Description
The module installs the yubico PAM libraries that enable using yubikeys as a supported authentication method. Using the default variables it will enable system wide yubikey authentication for all users defined using the yubikey::key type. It assumes a default PAM configuration, but for complex environments the setup can be adjusted.
Setup
What yubikey affects
- The PAM yubico libraries will be installed from either the distribution repo or Yubico's depending on the Linux Distribution.
- As default, it will be configured as sufficient authentication before the PAM Unix module. Please review your PAM configuration.
- As with any PAM change, it is strongly suggested to test it with a shell open, since it may lock you out of the system.
Beginning with yubikey
To configure a system, begin with adding the class.
class profile::yubikey {
include ::yubikey
}
Usage
The module will install the require bits, and update the PAM configuration to have yubikey as a "sufficient" authentication method, before pam_unix.so (i.e. before user/password). By default, it will also enable debugging. Consider editing the arguments for production systems:
class { '::yubikey::config' :
arguments => ['id=16']
}
For other arguments, or using with the Yubico Radius, please check the documentation on which parameters to use on https://developers.yubico.com/yubico-pam/ .
To configure a user, define a new key:
yubikey::key { 'username' :
token => 'array of tokens' #Since version 1.0.0
homedir => 'homedir'
group => 'group'
}
Where token is the Yubikey token ID. So far it only accepts a string and not an array. This will create a new file in the user's home directory (that you should provide) in a given path (~/.yubico/authorized_yubikeys) with the authorization mapping.
Reference
The ::yubikey class accepts all parameters for ::yubikey::install and ::yubikey::config.
The ::yubikey::install accepts the following variables:
- $pkgname: String. Defaults to sane values in both RedHat and Debian derivatives.
- $managedeps: Bool. If set to true it will configure EPEL, or APT, if required.
The ::yubikey::config class accepts the following variables:
- $arguments: Array. Defaults to ['debug','id=16']. Arguments are documented in https://developers.yubico.com/yubico-pam/ .
- $service: Array. Defaults to system-auth & password-auth in RedHat systems and common-auth in Ubuntu systems. Depending on your implementation, you might want to have yubikey authentication on a particular service (like sshd) so check your distribution documentation on how PAM is configured for your system.
- $control: String. Defaults to 'sufficient'. Again, depending on your setup, you may want to add other authentication controls. Refer to the PAM documentation. Module will accept requisite, required, sufficient or optional.
- $beforemod: String. Defaults to 'pam_unix.so'. Works with most default PAM setups.
The ::yubikey::key type accepts the following parameters:
- $token: Array of 12 char strings (Yes, it will validate that!). Be careful!, this used to be a string! of your Yubikey ID.
- $home: String. User home directory.
- $gid: String. User's primary group.
Limitations
So far this has only been tested in Ubuntu and Centos. Should work in RHEL, Fedora, and Debian. Please test it and let me know. Also do know that this code is not endorsed by Yubico in any way, so use it at your own risk.
Development
Regular rules apply, clone, PR, and I'll have a look. Generally on irc (#puppet and others on Freenode), my nick is sgtpepper so feel free to contact me if you have any doubts.
Tested in Puppetconf
Dependencies
- puppetlabs/stdlib (1.x)
- puppetlabs/apt (1.x)
- stahnma/epel (1.x)
- herculesteam/augeasproviders_core (2.x)
- herculesteam/augeasproviders_pam (2.x)