Mosquitto and HASS.io, defining more than one user?

In the Mosquitto broker in HASS.IO, there is a “logins” section in options:

"logins": [
    {
      "username": "XXXXXX",
      "password": "XXXXXX"
    }
  ],

Is there specific syntax to define multiple users? If not, how does one add another user to Mosquitto on Hass.io?

Thanks!

Like this:

“logins”: [
{
“username”: “homeassistant”,
“password”: “xxxxxxx”
},
{
“username”: “sensors”,
“password”: “xxxxxxxxx”
}
],

1 Like

Thanks @hijinx!

some people are really polite here… lol