# =================================================================================================== # ? ABOUT # @author : Noah Knegt # @email : personal@noahknegt.com # @repo : https://git.noahknegt.com/noah.knegt/ansible-automations # @createdOn : 27-02-2023 # @description : This will setup the normal user on the machine. # =================================================================================================== --- - name: Create the group ansible.builtin.group: name: noahk state: present - name: Create the user ansible.builtin.user: name: noahk group: noahk groups: noahk,{{ setup_sudo_group }} password: "{{ setup_noahk_password }}" state: present shell: /bin/bash - name: Add user to sudoers ansible.builtin.copy: src: noahk/noahk_sudoers dest: /etc/sudoers.d/noahk owner: root group: root mode: 0440 - name: Create .ssh directory ansible.builtin.file: path: /home/noahk/.ssh state: directory owner: noahk group: noahk mode: 0700