mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 14:20:22 -07:00
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 = '''
|
DOCUMENTATION = '''
|
||||||
---
|
---
|
||||||
module: logentries_msg
|
module: logentries_msg
|
||||||
version_added: "2.2"
|
version_added: "2.5"
|
||||||
short_description: Send a message to logentries.
|
short_description: Send a message to logentries.
|
||||||
description:
|
description:
|
||||||
- Send a message to logentries
|
- Send a message to logentries
|
||||||
|
@ -32,27 +32,21 @@ options:
|
||||||
description:
|
description:
|
||||||
- Log token.
|
- Log token.
|
||||||
required: true
|
required: true
|
||||||
version_added: "2.1"
|
|
||||||
msg:
|
msg:
|
||||||
description:
|
description:
|
||||||
- The message body.
|
- The message body.
|
||||||
required: true
|
required: true
|
||||||
version_added: "2.1"
|
|
||||||
api:
|
api:
|
||||||
description:
|
description:
|
||||||
- API endpoint
|
- API endpoint
|
||||||
default: data.logentries.com
|
default: data.logentries.com
|
||||||
version_added: "2.1"
|
|
||||||
port:
|
port:
|
||||||
description:
|
description:
|
||||||
- API endpoint port
|
- API endpoint port
|
||||||
default: 80
|
default: 80
|
||||||
version_added: "2.1"
|
author: "Jimmy Tang (@jcftang) <jimmy_tang@rapid7.com>"
|
||||||
author: "Jimmy Tang <jimmy_tang@rapid7.com>"
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
# TODO: Disabled the RETURN as it was breaking docs building. Someone needs to
|
|
||||||
# fix this
|
|
||||||
RETURN = '''# '''
|
RETURN = '''# '''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue