Mapping not allowed in config/configuration.yaml

Hi!
I´m new in this with working with HA. its really interested, but I get into some problem even if I try to follow some instructions on internet. some installation works good, but now I get inte to a problem that I which that someone can help me with.
I have installed portioner, influxdb, Grafana, watchtower, pihole and now latest configurator.
But not I got into problem when I check the configuration.
I got the error:
Error loading /config/configuration.yaml: mapping values are not allowed here in “/config/configuration.yaml”, line 18, column 10

my configuration.yaml looks like this

# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:

# Text to speech
tts:
- platform: google_translate
group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml

influxdb:
host: 192.168.0.86

panel_iframe:
configurator
title: "Configurator"
url: 'http://192.168.0.86:3218'
icon: ndi:wrench
graf:
title: 'Grafena'
url: http://192.168.0.86:3000
icon: mdi:chart-bar-stacked

Where do I have the problem? thanks in advanced / Markus

1 Like

Please see the sticky post for how to correctly mark code blocks.

The errors suggests the problem relates to indenting, or lack of, but we can’t tell.

sorry for the bad input. first time here.
Maybe this is better for show the codes.

# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:

# Text to speech
tts:
  - platform: google_translate

group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml

influxdb:
  host: 192.168.0.86

panel_iframe:
  configurator
    title: "Configurator"
    url: 'http://192.168.0.86:3218'
    icon: ndi:wrench
  graf:
    title: 'Grafena'
    url: http://192.168.0.86:3000
    icon: mdi:chart-bar-stacked

I did at least find out what the problem was. missed the : behind configurator. that solved my issue.

1 Like