What is correct syntax for user module?

Hello!
Beginner here. My goal is to use a simple play book to create a new user. I found this example in the modules pages at ansible.com

# Add the user 'johnd' with a specific uid and a primary group of 'admin'
- user: name=johnd comment="John Doe" uid=1040 group=admin
description="Oracle Service Account"
You need to wrap this in quotes - because otherwise it sees "description=Oracle" and then two keys without values (Service, and Account).