begin certificate integration for hosts

This commit is contained in:
Nico Schottelius 2023-09-27 13:49:56 +02:00
commit ca8e55e56d
6 changed files with 72 additions and 1 deletions

View file

@ -0,0 +1,18 @@
- name: Create ssl directory
ansible.builtin.file:
path: /ssl
state: directory
mode: '0755'
owner: root
tags:
- dir
- ssl
- name: Copy SSL certificate
ansible.builtin.copy:
src: files/{{ inventory_hostname }}/
dest: /ssl
owner: root
mode: '0644'
tags:
- files
- ssl