community.general.pushbullet (8.5.0) — module

Sends notifications to Pushbullet

Authors: Willy Barro (@willybarro)

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

This module sends push notifications via Pushbullet to channels or devices.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Sends a push notification to a device
  community.general.pushbullet:
    api_key: "ABC123abc123ABC123abc123ABC123ab"
    device: "Chrome"
    title: "You may see this on Google Chrome"
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Sends a link to a device
  community.general.pushbullet:
    api_key: ABC123abc123ABC123abc123ABC123ab
    device: Chrome
    push_type: link
    title: Ansible Documentation
    body: https://docs.ansible.com/
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Sends a push notification to a channel
  community.general.pushbullet:
    api_key: ABC123abc123ABC123abc123ABC123ab
    channel: my-awesome-channel
    title: Broadcasting a message to the #my-awesome-channel folks
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Sends a push notification with title and body to a channel
  community.general.pushbullet:
    api_key: ABC123abc123ABC123abc123ABC123ab
    channel: my-awesome-channel
    title: ALERT! Signup service is down
    body: Error rate on signup service is over 90% for more than 2 minutes

Inputs

    
url:
    description:
    - URL field, used when O(push_type=link).
    type: str

body:
    description:
    - Body of the notification, e.g. Details of the fault you're alerting.
    type: str

title:
    description:
    - Title of the notification.
    required: true
    type: str

device:
    description:
    - The device NAME you wish to send a push notification, as seen on the Pushbullet
      main page.
    type: str

api_key:
    description:
    - Push bullet API token
    required: true
    type: str

channel:
    description:
    - The channel TAG you wish to broadcast a push notification, as seen on the "My Channels"
      > "Edit your channel" at Pushbullet page.
    type: str

push_type:
    choices:
    - note
    - link
    default: note
    description:
    - Thing you wish to push.
    type: str