Login attempt or request with invalid authentication from 192.168.1.n

Yup, I know there are tons of posts on this topic but I have yet to find one that solves my problem. I have been out of touch and out of date withy HA for sometime and today I decide to update my hasbian version 100.3 to the latest version 104.n The minute HA starts the log file fills with the above error, one for each of my 192.168.1.n devices trying to access/update HA devices.In my configuration.yaml file under version 100.3 of HA I had:

  auth_providers:
    - type: legacy_api_password
      api_password: !secret http_password
#      trusted_networks:
#        - 192.168.1.0/24

Everything worked fine under v100.3 with the config shown above, Uncommenting the last two lines causes an error. I use the same config under v104.n but it does not work. The post that came closest to describing my problem provided this example:

auth_providers:
      - type: legacy_api_password
        api_password: "********"
      - type: trusted_networks
        trusted_networks:
          - 127.0.0.1
          - 192.168.1.0/24
        trusted_users:
          192.168.1.0/24 user1_id
        allow_bypass_logon: true

Anything below the api_password line caused an errors. I am at a loss. I suspect there have been changes to authorization between 100-104 but I can not find a solution that fixes my problem.
Anyone?