Config warning - time_date

hello

I keep getting these errors when boot HA:

Your configuration contains extra keys that the platform does not support.
Please remove [host], [port], [api_key], [monitored_variables].  (See /config/configuration.yaml, line 
73). 
Offending data: {"platform": "time_date", "display_options": "<redacted>", "host": "192.168.0.14", 
"port": 8081, "api_key": "xxxxxxxxxxxxxxxxxxxxx", "monitored_variables": ["current_status", 
"speed","queue_size", "disk_free"]}

i dont understand what the issue is here, line 73 in the config.yam’ file is this:

- platform: time_date
display_options:
  - 'time'
  - 'date'

i dont see what the issue is with this? Can anyone help?

Looks like an indentation issue to me.
display_options: Should be moved 2 spaces to the right and you probably need to do the same for the 2 lines below too

Thanks for the reply. I tried this but then I get a error. Put it back and HA check config runs fine. Must be something else.

Try https://codebeautify.org/yaml-validator
Your code above returns an error
However with indentations it does not:

- platform: time_date
  display_options:
    - 'time'
    - 'date'