add require_certificate
This commit is contained in:
parent
b6fc63b921
commit
aa3295aa14
@ -5,11 +5,13 @@ mosquitto_bind_address: "{{ ansible_default_ipv4.address }}"
|
||||
mosquitto_pid_dir: /var/run
|
||||
mosquitto_base_dir: /etc/mosquitto
|
||||
mosquitto_config_dir: "{{ mosquitto_base_dir }}/conf.d"
|
||||
mosquitto_passwd_file: "{{ mosquitto_base_dir }}/passwd"
|
||||
mosquitto_pid_file: "{{ mosquitto_pid_dir }}/mosquitto.pid"
|
||||
|
||||
mosquitto_tls_enabled: False
|
||||
mosquitto_require_certificate: False
|
||||
mosquitto_ca_dir: "{{ mosquitto_base_dir }}/ca_certificates"
|
||||
mosquitto_certs_dir: "{{ mosquitto_base_dir }}/certs"
|
||||
mosquitto_ca_file: "{{ mosquitto_ca_dir }}/ca.pem"
|
||||
mosquitto_private_key_file: "{{ mosquitto_certs_dir }}/mttq.key"
|
||||
mosquitto_cert_file: "{{ mosquitto_certs_dir }}/mttq.pem"
|
||||
mosquitto_passwd_file: "{{ mosquitto_base_dir }}/passwd"
|
||||
mosquitto_pid_file: "{{ mosquitto_pid_dir }}/mosquitto.pid"
|
||||
mosquitto_tls_enabled: False
|
||||
|
@ -23,5 +23,5 @@ password_file {{ mosquitto_passwd_file }}
|
||||
cafile {{ mosquitto_ca_file }}
|
||||
certfile {{ mosquitto_cert_file }}
|
||||
keyfile {{ mosquitto_private_key_file }}
|
||||
require_certificate true
|
||||
require_certificate {{ mosquitto_require_certificate|lower }}
|
||||
{% endif %}
|
||||
|
Loading…
Reference in New Issue
Block a user