1
0
Fork 0
ansible-collection-kit/roles/mosquitto
Daniele Tricoli 8ee6be7266
All checks were successful
continuous-integration/drone/push Build is passing
Add an optional way to add mosquitto user to ssl-cert group
2022-04-09 01:45:48 +02:00
..
defaults Add an optional way to add mosquitto user to ssl-cert group 2022-04-09 01:45:48 +02:00
handlers Use FQCN 2022-04-07 02:20:23 +02:00
tasks Add an optional way to add mosquitto user to ssl-cert group 2022-04-09 01:45:48 +02:00
templates/etc/mosquitto/conf.d Use {{ ansible_managed }} 2021-05-26 18:22:12 +02:00
README.md Add an optional way to add mosquitto user to ssl-cert group 2022-04-09 01:45:48 +02:00

mosquitto

Install and configure mosquitto.

Role Variables

  • mosquitto_become - Default: true. Enable/disable the Ansible become functionality.
  • mosquitto_become_user - Default: root. When using become functionality for privilege escalation, this is the user with desired privileges you become.
  • mosquitto_user - Default: admin.
  • mosquitto_password - Default: "set the password, Luke!" (without quotes).
  • mosquitto_certfile - Default: "". Server certificate.
  • mosquitto_keyfile - Default: "". Server key.
  • mosquitto_cafile - Default: "". CA certificate.
  • mosquitto_add_to_ssl_cert_group - Default: false. Add the mosquitto user to the ssl-cert group.

TLS is enabled only if all of mosquitto_certfile, mosquitto_keyfile and mosquitto_cafile are set.