2018-12-23 09:00:12 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Ensure OpenSSL installed (RedHat)
|
|
|
|
yum:
|
|
|
|
name:
|
|
|
|
- openssl
|
|
|
|
state: present
|
|
|
|
update_cache: no
|
2018-12-24 07:38:00 +00:00
|
|
|
when: "matrix_ssl_retrieval_method == 'self-signed' and ansible_os_family == 'RedHat'"
|
2018-12-23 09:00:12 +00:00
|
|
|
|
|
|
|
- name: Ensure APT usage dependencies are installed (Debian)
|
|
|
|
apt:
|
|
|
|
name:
|
|
|
|
- openssl
|
|
|
|
state: present
|
|
|
|
update_cache: no
|
2018-12-24 07:38:00 +00:00
|
|
|
when: "matrix_ssl_retrieval_method == 'self-signed' and ansible_os_family == 'Debian'"
|
2018-12-23 09:00:12 +00:00
|
|
|
|
2018-12-24 07:39:27 +00:00
|
|
|
- name: Generate self-signed certificates
|
2019-01-12 15:53:00 +00:00
|
|
|
include_tasks: "{{ role_path }}/tasks/ssl/setup_ssl_self_signed_obtain_for_domain.yml"
|
2019-01-16 16:05:48 +00:00
|
|
|
with_items: "{{ matrix_ssl_domains_to_obtain_certificates_for }}"
|
2018-12-23 09:00:12 +00:00
|
|
|
loop_control:
|
|
|
|
loop_var: domain_name
|
|
|
|
when: "matrix_ssl_retrieval_method == 'self-signed'"
|