Forge Home

tajine

Deploy and configure Tajine, a registration authority pluged to CFSSL PKI

787 downloads

157 latest version

4.7 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

  • 2.0.0 (latest)
  • 1.1.1
  • 1.1.0
  • 1.0.0
  • 0.3.0 (deleted)
  • 0.2.0 (deleted)
  • 0.1.0 (deleted)
released Oct 5th 2023
This version is compatible with:
  • Puppet Enterprise 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x, 2021.6.x, 2021.5.x, 2021.4.x, 2021.3.x, 2021.2.x, 2021.1.x, 2021.0.x
  • Puppet >= 7.0.0 < 8.0.0

Start using this module

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

Add this module to your Puppetfile:

mod 'adullact-tajine', '2.0.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add adullact-tajine
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install adullact-tajine --version 2.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: pki, cfssl

Documentation

adullact/tajine — version 2.0.0 Oct 5th 2023

tajine

Table of Contents

  1. Description
  2. Setup - The basics of getting started with tajine
  3. Usage - Configuration options and additional functionality
  4. Limitations - OS compatibility, etc.
  5. Development - Guide for contributing to the module

Description

Deploy and configure Tajine, a registration authority (RA) frontend pluged to backend CFSSL PKI.

Setup

What tajine affects

This module install and configure Tajine (a web record authority, working with backend CFSSL certificate authority).

By default, a PostgreSQL server is installed and configured locally, a role and a database are created.

Setup Requirements

As a web app, you have to configure a web server with php configured. To do so with Puppet, it is possible to use :

As backend, only PostgreSQL is supported. With Puppet, it is possible to use puppetlabs-postgresql.

As certificate authority, only CFSSL is supported. With Puppet, it is possible to use adullact-cfssl.

Tajine send by mail to recipient the produced X.509 certificat in PKCS#12 format. You have to ensure to set SMTP attributes accordingly with your SMTP infrastructure. With Puppet, it is possible to use puppet-postfix.

Beginning with tajine

The very basic steps can be simple include tajine.

Usage

If you are using Apache, this setup is possible :

class { 'tajine':
  trusted_hosts      => '^tajine.example.org$',
  app_secret        => 'ThisIsMySecetUsedToGenerateCSRFTokens',
  smtp_host         => 'smtp.example.org',
  smtp_port         => 465,
  smtp_user         => 'tajine-username%40example.org',
  smtp_password     => 'tajine-smtppassword',
  sys_rootpath      => '/var/www/tajine.example.org',
  sys_rootpath_mode => '0700',
  sys_user          => 'www-data',
  sys_group         => 'www-data',
}

Reference

Details are in REFERENCE.md file.

Limitations

Supported OSes are given in metadata.json file.

Development

Home at URL https://gitlab.adullact.net/adullact/puppet-tajine

Issues and MR are welcome.

Release Notes/Contributors/Etc.

Details in CHANGELOG.md.

Copyright (C) 2018 Association des Développeurs et Utilisateurs de Logiciels Libres
                     pour les Administrations et Colléctivités Territoriales.

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

You should have received a copy of the GNU Affero General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/agpl.html>.