Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ncorrare/ncorrare-yubikey

A module to install / configure / manage users for yubikey as an OTP Solution.
https://github.com/ncorrare/ncorrare-yubikey

pam pam-yubico-libraries puppet puppet-module yubico yubikeys

Last synced: 4 months ago
JSON representation

A module to install / configure / manage users for yubikey as an OTP Solution.

Awesome Lists containing this project

README

        

# ncorrare-yubikey
## by Nicolas Corrarello http://nicolas.corrarello.com/
[![Coverage Status](https://coveralls.io/repos/ncorrare/ncorrare-yubikey/badge.png?branch=master)](https://coveralls.io/r/ncorrare/ncorrare-yubikey)
[![Build Status](https://travis-ci.org/ncorrare/ncorrare-yubikey.svg?branch=master)](https://travis-ci.org/ncorrare/ncorrare-yubikey)

#### Table of Contents

1. [Overview](#overview)
2. [Module Description - What the module does and why it is useful](#module-description)
3. [Setup - The basics of getting started with yubikey](#setup)
* [What yubikey affects](#what-yubikey-affects)
* [Beginning with yubikey](#beginning-with-yubikey)
4. [Usage - Configuration options and additional functionality](#usage)
5. [Reference - An under-the-hood peek at what the module is doing and how](#reference)
5. [Limitations - OS compatibility, etc.](#limitations)
6. [Development - Guide for contributing to the module](#development)

## 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.
```puppet
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:

```puppet
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:
```puppet
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