--- - name: Install NFS client. apt: name: nfs-common state: present - name: Mount NFS share. ansible.posix.mount: src: {{ hostvars['admin']['ansible_host'] }}:/mnt/data path: /mnt/data fstype: nfs4 opts: defaults,user,exec state: mounted