Several plant components

How to set up several plant components? https://home-assistant.io/components/plant/

Have tried different spacing. Different syntax but always get an error. This is the latest i’ve tried

plant:
- orchid_plant:
    sensors:
      moisture: sensor.plant_orchid_moisture
      battery: sensor.plant_orchid_battery
      temperature: sensor.plant_orchid_temperature
      conductivity: sensor.plant_orchid_conductivity
      brightness: sensor.plant_orchid_brightness
    min_moisture: 3
    max_moisture: 60
    min_battery: 15
    min_temperature: 15
- other_plant:
    sensors:
      moisture: sensor.plant_spices_moisture
      battery: sensor.plant_spices_battery
      temperature: sensor.plant_spices_temperature
      conductivity: sensor.plant_spices_conductivity
      brightness: sensor.plant_spices_brightness
    min_moisture: 3
    max_moisture: 60
    min_battery: 15
    min_temperature: 0

Here’s how I indent mine in the configuration.yaml, works with no problems:

plant:
  Fern:
    sensors:
      moisture: sensor.miflora_2_soil_moisture
      temperature: sensor.miflora_2_temperature
      conductivity: sensor.miflora_2_conductivity
      brightness: sensor.miflora_2_light_intensity
    min_moisture: 10
    min_conductivity: 200
    max_conductivity: 2400
    min_temperature: 16
    max_temperature: 25

  Lemon:
    sensors:
      moisture: sensor.miflora_1_soil_moisture
      temperature: sensor.miflora_1_temperature
      conductivity: sensor.miflora_1_conductivity
      brightness: sensor.miflora_1_light_intensity
    min_moisture: 10
    min_conductivity: 200
    max_conductivity: 2400
    min_temperature: 5
    max_temperature: 30