๐Ÿ“— Ansible playbooks and roles for building an idempotent, interconnected and scalable infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
ansible-playbooks/roles/crl/tasks/main.yml

41 lines
663 B

- name: install and configure nginx
include_role:
name: nginx
vars:
nginx:
servers:
- conf: nginx_crl
http: true
- conf: nginx_crl
certs: true
- name: create crl directory
file:
path: "{{ crl_dir }}"
state: directory
mode: 0500
owner: nginx
group: nginx
- name: generate crls
include_role:
name: ca
vars:
function: crl
ca_options:
path: "{{ crl_dir }}"
mode: '0400'
owner: nginx
group: nginx
ca_crls:
- name: add directories to backup plan
include_role:
name: backup
vars:
function: add
backup_items:
- "{{ crl_dir }}"