Multiple MQTT covers

I’m unable to get 2 covers working with the new configuration. See MQTT Cover - Home Assistant

this is my config :

mqtt:
  broker: xxxx
  cover:
    - name: blabla
      state_topic: blabla
  cover:
    - name: blabla2
      state_topic: blbla

The second cover is not getting picked up. hopefully something obvious ?

Try removing the second cover statement. More like:

  cover:
    - name: blabla
      state_topic: blabla
    - name: blabla2
      state_topic: blbla
1 Like

Thank you. It was as simple as that.