Trying to remove hue groups and switches from Google Home (with Nabu Casa/Cloud)

Hi,

I’ve added Hue to my Hassio and the Nabu Casa cloud. But my Google Home is showing Hue Groups and a couple of switches I do not need. I tried to remove them via the Hue component and via the Cloud component, but both are not working. What am I doing wrong?

in config:

# Hue
hue:
  bridges:
    - host: xxx.xxx.x.x
      allow_unreachable: true
      allow_hue_groups: false
      
      
# Hue sensoren
device_tracker:
  - platform: hue
sensor:
  - platform: hue

cloud: !include cloud.yaml

And in cloud.yaml:

  google_actions:
    filter:
      include_entities:
       - light.badkamer
       - light.wc
       - light.zithoek
       - light.eettafel
      exclude_domains:
       - group
       - switch
      exclude_entities:
       - light.badkamer_2
       - light.overloop_2
       - light.wc_2
       - light.omkleedkamer
       - light.balkon
       - light.buiten
       - light.entree
       - light.woonkamer
       - group.sanitair
       - group.woonkamer
       - group.slaapkamer
       - group.omkleedkamer
       - group.balkon
       - group.overloop
       - group.default_view
       - group.all_automations
       - group.all_switches
       - group.personen
       - switch.tv_philips
       - media_player.asqm163ecast
       - media_player.televisie_philips
    entity_config:
      light.wc:
        name: wc
        aliases:
         - toilet
        room: sanitair
    entity_config:
      light.badkamer:
        name: badkamer
        aliases:
         - douche
        room: sanitair

I’ve updated the first post with the correct formatting for the code. Can anyone see my mistake?