community.general.grove (0.1.4) — module

Sends a notification to a grove.io channel

Authors: Jonas Pfenniger (@zimbatm)

Install collection

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


Add to requirements.yml

  collections:
    - name: community.general
      version: 0.1.4

Description

The C(grove) module sends a message for a service to a Grove.io channel.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Sends a notification to a grove.io channel
  grove:
    channel_token: 6Ph62VBBJOccmtTPZbubiPzdrhipZXtg
    service: my-app
    message: 'deployed {{ target }}'

Inputs

    
url:
    description:
    - Service URL for the web client
    required: false

message:
    description:
    - Message content
    required: true

service:
    default: ansible
    description:
    - Name of the service (displayed as the "user" in the message)
    required: false

icon_url:
    description:
    - Icon for the service
    required: false

channel_token:
    description:
    - Token of the channel to post to.
    required: true

validate_certs:
    default: 'yes'
    description:
    - If C(no), SSL certificates will not be validated. This should only be used on personally
      controlled sites using self-signed certificates.
    type: bool