--- - name: Add TOPGUN group ansible.builtin.group: name: TOPGUN state: present - name: Add maverik account ansible.builtin.user: name: maverik state: present shell: /bin/bash groups: - TOPGUN - sudo append: yes password: "{{ maverik_password_hashed }}" - name: Add charlie account ansible.builtin.user: name: charlie state: present shell: /bin/bash groups: - TOPGUN - sudo append: yes password: "{{ charlie_password_hashed }}" - name: Add goose account ansible.builtin.user: name: goose state: present shell: /bin/bash groups: - TOPGUN - sudo append: yes password: "{{ goose_password_hashed }}"