xoxys.unifi/tasks/certificates.yml

14 lines
404 B
YAML
Raw Normal View History

2018-07-12 23:02:27 +02:00
---
- block:
- name: Setup temp. openssl pkcs12 keystore
openssl_pkcs12:
path: "{{ unifi_tls_pkcs12_path }}"
friendly_name: ubnt
privatekey_path: "{{ unifi_tls_key_path }}"
cert_path: "{{ unifi_tls_cert_path }}"
2018-07-12 23:26:37 +02:00
passphrase: "{{ unifi_tls_pkcs12_passphrase }}"
2018-07-12 23:02:27 +02:00
state: present
delegate_to: localhost
become: True
become_user: "{{ unifi_tls_lookup_user }}"