mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
873 B
YAML
30 lines
873 B
YAML
12 years ago
|
---
|
||
|
# If a key doesn't apply to your module (ex: choices, default, or
|
||
|
# aliases) you can use the word 'null', or an empty list, [], where
|
||
|
# appropriate.
|
||
|
module: modulename
|
||
|
short_description: This is a sentence describing the module
|
||
|
description:
|
||
|
- Longer description of the module
|
||
|
- You might include instructions
|
||
12 years ago
|
version_added: "X.Y"
|
||
12 years ago
|
author: Your AWESOME name here
|
||
|
notes:
|
||
|
- Other things consumers of your module should know
|
||
|
requirements:
|
||
|
- list of required things
|
||
|
- like the factor package
|
||
|
- or a specic platform
|
||
|
options:
|
||
|
# One or more of the following
|
||
|
option_name:
|
||
|
description:
|
||
|
- Words go here
|
||
|
- that describe
|
||
|
- this option
|
||
|
required: true or false
|
||
|
default: a string or the word null
|
||
|
choices: [list, of, choices]
|
||
|
aliases: [list, of, aliases]
|
||
12 years ago
|
version_added: 1.X
|