Forge Home

identity

Provides helpers to manage users and groups

16,239 downloads

4,038 latest version

5.0 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

  • 5.0.1 (latest)
  • 4.0.1
  • 4.0.0
  • 3.1.2
  • 3.1.0
  • 3.0.4
  • 3.0.3
  • 3.0.2
released Aug 26th 2019
This version is compatible with:
  • Puppet Enterprise 2018.1.x, 2017.3.x, 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
  • Puppet >=4.0.0 <6.0.0
  • , , , , ,

Start using this module

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

Add this module to your Puppetfile:

mod 'vshn-identity', '5.0.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add vshn-identity
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install vshn-identity --version 5.0.1

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

Documentation

vshn/identity — version 5.0.1 Aug 26th 2019

Table of Contents

  1. Overview
  2. Module Description - What the module does and why it is useful
  3. Setup - The basics of getting started with identity
  4. Usage - Configuration options and additional functionality
  5. Reference - An under-the-hood peek at what the module is doing and how
  6. Limitations - OS compatibility, etc.
  7. Development - Guide for contributing to the module

Overview

This module manages identities like users and groups.

Build Status vshn-identity

Module Description

It provides some defined types and hiera helpers to mass-manage users and groups. Some features:

  • Define users and groups in hiera
  • Cleanly remove users and groups with ensure => absent
  • Manage skel files
  • Deliver user specific dotfiles

Setup

What identity affects

  • Users
  • Groups
  • /etc/skel directory

Beginning with identity

It's not needed to include or instantiate the main class to use this module. The main class is just there to pass a hash of users and groups to the create_resources function and to manage the skel directory. The main functionality lies in the defined types (see below).

Usage

You can pass a hash of users and groups to the main class or call the two defined types identity::user or identity::group directly, passing the correct parameters.

Some specialities explained:

  • identity::user::ignore_uid_gid: Allows to ignore the uid and gid parameters, even if they define something. This can be usefull if you normally manage the uids and gids, but want to make an exception on some systems.
  • identity::user::manage_home: Creates or deletes the home directory of the user.
  • identity::user::manage_dotfiles: If set to true, dofiles from identity::dotfiles_source/$username are delivered to the users home directory. The files are not purged if they would disapear at the source. This parameter also wants the parameter manage_home to be true.

Hiera example

The hiera keys which hold the users, userdefaults, groups and group_defaults data are specified in the main class parameters `$hiera*_key` and can be overwritten.

When passing data to the hashes by calling the main class from a Puppet manifest this data has precedence over Hiera data.

---
classes:
  - identity

identity::manage_skel: true
identity::skel_source: 'puppet:///modules/identity_data/skel'
identity::dotfiles_source: 'puppet:///modules/identity_data'

user_defaults:
  ignore_uid_gid: false
  groups:
    - users

users:
  test.user:
    ensure: present
    uid: 2001
    comment: 'Test User'
    password: 'pwhash'
    ssh_keys:
      main:
        key: 'thekey'
    groups:
      - staff
    manage_dotfiles: true
  zwei.user:
    ensure: present
    comment: 'Test User2'
    groups:
      - staff

Reference

All parameters are documented inline. Have a look at the .pp files in manifests/.

Limitations

The module is just tested under Ubuntu 16.04, but it should work on other platforms too. As the module is using the purge_ssh_keys parameter, it's not tested for compatibly with Puppet versions below 4.10

Development

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Make sure your PR passes the Rspec tests.