On this page
community.general.flowdock – Send a message to a flowdock
Note
This plugin is part of the community.general collection (version 3.8.1).
You might already have this collection installed if you are using the ansible
package. It is not included in ansible-core
. To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install community.general
.
To use it in a playbook, specify: community.general.flowdock
.
Synopsis
- Send a message to a flowdock team inbox or chat using the push API (see https://www.flowdock.com/api/team-inbox and https://www.flowdock.com/api/chat)
Parameters
Parameter | Choices/Defaults | Comments |
---|---|---|
external_user_name
string
|
(chat only - required) Name of the "user" sending the message
|
|
from_address
string
|
(inbox only - required) Email address of the message sender
|
|
from_name
string
|
(inbox only) Name of the message sender
|
|
link
string
|
(inbox only) Link associated with the message. This will be used to link the message subject in Team Inbox.
|
|
msg
string / required
|
Content of the message
|
|
project
string
|
(inbox only) Human readable identifier for more detailed message categorization
|
|
reply_to
string
|
(inbox only) Email address for replies
|
|
source
string
|
(inbox only - required) Human readable identifier of the application that uses the Flowdock API
|
|
subject
string
|
(inbox only - required) Subject line of the message
|
|
tags
string
|
tags of the message, separated by commas
|
|
token
string / required
|
API token.
|
|
type
string / required
|
|
Whether to post to 'inbox' or 'chat'
|
validate_certs
boolean
|
|
If no , SSL certificates will not be validated. This should only be used on personally controlled sites using self-signed certificates.
|
Examples
- name: Send a message to a flowdock
community.general.flowdock:
type: inbox
token: AAAAAA
from_address: user@example.com
source: my cool app
msg: test from ansible
subject: test subject
- name: Send a message to a flowdock
community.general.flowdock:
type: chat
token: AAAAAA
external_user_name: testuser
msg: test from ansible
tags: tag1,tag2,tag3
Authors
- Matt Coddington (@mcodd)
© 2012–2018 Michael DeHaan
© 2018–2021 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/latest/collections/community/general/flowdock_module.html