Deprecated

Removed in 9.0.0

i

Reason:the endpoints this module relies on do not exist any more and do not resolve to IPs in DNS. | Alternative:no known alternative at this point

community.general.flowdock (8.5.0) — module

Send a message to a flowdock

Authors: Matt Coddington (@mcodd)

Install collection

Install with ansible-galaxy collection install community.general:==8.5.0


Add to requirements.yml

  collections:
    - name: community.general
      version: 8.5.0

Description

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)

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- 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
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- 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

Inputs

    
msg:
    description:
    - Content of the message
    required: true
    type: str

link:
    description:
    - (inbox only) Link associated with the message. This will be used to link the message
      subject in Team Inbox.
    required: false
    type: str

tags:
    description:
    - tags of the message, separated by commas
    required: false
    type: str

type:
    choices:
    - inbox
    - chat
    description:
    - Whether to post to 'inbox' or 'chat'
    required: true
    type: str

token:
    description:
    - API token.
    required: true
    type: str

source:
    description:
    - (inbox only - required) Human readable identifier of the application that uses the
      Flowdock API
    required: false
    type: str

project:
    description:
    - (inbox only) Human readable identifier for more detailed message categorization
    required: false
    type: str

subject:
    description:
    - (inbox only - required) Subject line of the message
    required: false
    type: str

reply_to:
    description:
    - (inbox only) Email address for replies
    required: false
    type: str

from_name:
    description:
    - (inbox only) Name of the message sender
    required: false
    type: str

from_address:
    description:
    - (inbox only - required) Email address of the message sender
    required: false
    type: str

validate_certs:
    default: true
    description:
    - If V(false), SSL certificates will not be validated. This should only be used on
      personally controlled sites using self-signed certificates.
    required: false
    type: bool

external_user_name:
    description:
    - (chat only - required) Name of the "user" sending the message
    required: false
    type: str