How do to change an array of hosts gsettings using ansible?

I want to disable the maximzing feature on gnome on the gsettings. I have used this command shell:

gsettings set org.gnome.shell.extensions.classic-overrides edge-tiling false 

But this per user setting.

I have tried this playbook but this only affects only my user settings. How could I change the gsettings of all users to disable maximizing.

I probably am approaching it the wrong way, instead of trying to edit the user gsettings, is there a way to edit the file that has all user settings?

- hosts: all
  become: true
  tasks:
    - name: disable auto maximize
      become_user: 'joe'
      shell: gsettings set org.gnome.shell.extensions.classic-overrides edge-tiling false