I have an ansible task which creates a new user on ubuntu 12.04;
- name: Add deployment user action: user name=deployer password=mypassword
The task definition for the user module should be different in the latest Ansible version.
tasks: - user: name=test password={{ password }} state=present