From a6039e2c13e3419fb4d76327b24fa4e42ebfc780 Mon Sep 17 00:00:00 2001 From: Alex Tavarez Date: Sun, 16 Nov 2025 13:53:51 -0500 Subject: [PATCH] Added an import of task transfering over SSL/TLS certificates --- roles/bootstrap/tasks/init@linux.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/roles/bootstrap/tasks/init@linux.yml b/roles/bootstrap/tasks/init@linux.yml index 9b63533..7df9a0f 100644 --- a/roles/bootstrap/tasks/init@linux.yml +++ b/roles/bootstrap/tasks/init@linux.yml @@ -4,6 +4,9 @@ - name: Populate system with groups and user accounts ansible.builtin.import_tasks: file: "create_users@{{ ansible_facts['system'].lowercase() }}.yml" +- name: Provide SSL certificate files + ansible.builtin.import_tasks: + file: "configure_ssl@{{ ansible_facts['system'].lowercase() }}.yml" - name: Configure SSH for root ansible.builtin.import_tasks: file: "configure_ssh@{{ ansible_facts['system'].lowercase() }}.yml" \ No newline at end of file