CA - Certificate Authority / PKI

Document Control

TODO:

  • Overall structure.
  • Initial draft complete
  • Testing
  • Ready

Ansible Role Ansible Quality Score Build Status GitHub issues GitHub last commit

User Story: CA - Certificate Authority

As a: UNIX and Linux system administrator

I want to: set up a certificate authority / PKI

So that: issue, sign and manage certificates.

Manual Example

Task Description


Parametrization

Using the role

Use a role to:

You can create a role under roles/ca or download crivetimihai.ca using ansible-galaxy. Create a playbook called users-playbook.yml that defines / overrides the default variables of the role.

Using the role in a playbook
---
- name: Install ca
  hosts: all

  tasks:
    - name: ca is configured
      import_role:
        name: crivetimihai.ca
      vars:
        ca_enable_service: true
      tags: ca
# Install the role
ansible-galaxy install crivetimihai.ca

# Run the playbook
ansible-playbook ca-playbook.yml

Last update: 2020-02-04