Commit 08dc72b5 by Paul Durivage

Update documentation

parent 6dd94347
......@@ -37,7 +37,7 @@ options:
aliases: []
password:
description:
- Password for the user
- Password for the user (plain text)
required: true
default: null
aliases: []
......@@ -54,6 +54,10 @@ author: Paul Durivage
'''
EXAMPLES = '''
# Ad-hoc example
$ ansible -i hosts -m win_user -a "name=bob password=Password12345" all
$ ansible -i hosts -m win_user -a "name=bob password=Password12345 state=absent" all
# Playbook example
---
- name: Add a user
......@@ -64,5 +68,4 @@ EXAMPLES = '''
win_user:
name: ansible
password: "@ns1bl3"
state: present
'''
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment