corrected docs, removed comment, return is req
This commit is contained in:
parent
dab0661cc7
commit
bc6b1ca17b
1 changed files with 2 additions and 8 deletions
|
@ -21,7 +21,7 @@ ANSIBLE_METADATA = {'status': ['preview'],
|
|||
DOCUMENTATION = '''
|
||||
---
|
||||
module: logentries_msg
|
||||
version_added: "2.2"
|
||||
version_added: "2.5"
|
||||
short_description: Send a message to logentries.
|
||||
description:
|
||||
- Send a message to logentries
|
||||
|
@ -32,27 +32,21 @@ options:
|
|||
description:
|
||||
- Log token.
|
||||
required: true
|
||||
version_added: "2.1"
|
||||
msg:
|
||||
description:
|
||||
- The message body.
|
||||
required: true
|
||||
version_added: "2.1"
|
||||
api:
|
||||
description:
|
||||
- API endpoint
|
||||
default: data.logentries.com
|
||||
version_added: "2.1"
|
||||
port:
|
||||
description:
|
||||
- API endpoint port
|
||||
default: 80
|
||||
version_added: "2.1"
|
||||
author: "Jimmy Tang <jimmy_tang@rapid7.com>"
|
||||
author: "Jimmy Tang (@jcftang) <jimmy_tang@rapid7.com>"
|
||||
'''
|
||||
|
||||
# TODO: Disabled the RETURN as it was breaking docs building. Someone needs to
|
||||
# fix this
|
||||
RETURN = '''# '''
|
||||
|
||||
EXAMPLES = '''
|
||||
|
|
Loading…
Reference in a new issue