2024-04-01 21:59:48 +00:00
|
|
|
---
|
2024-05-03 20:27:42 +00:00
|
|
|
# hashistack generate certificates playbook
|
2024-04-01 21:59:48 +00:00
|
|
|
- name: "Generate certificates"
|
2024-07-11 21:28:44 +00:00
|
|
|
hosts: all, !deployment
|
2024-04-01 21:59:48 +00:00
|
|
|
strategy: linear
|
|
|
|
gather_facts: true
|
|
|
|
become: true
|
|
|
|
tasks:
|
2024-06-25 13:16:42 +00:00
|
|
|
- name: "Import variables"
|
2024-08-17 12:09:24 +00:00
|
|
|
ansible.builtin.include_role:
|
2024-07-25 20:29:19 +00:00
|
|
|
name: ednz_cloud.hashistack.hashistack
|
2024-06-25 13:16:42 +00:00
|
|
|
tags:
|
|
|
|
- always
|
|
|
|
|
2024-08-17 12:09:24 +00:00
|
|
|
- name: "Create Certificate Authority"
|
|
|
|
ansible.builtin.include_role:
|
|
|
|
name: ednz_cloud.hashistack.hashistack_ca
|
|
|
|
apply:
|
|
|
|
delegate_to: localhost
|
2024-07-25 20:29:19 +00:00
|
|
|
tags:
|
|
|
|
- always
|