ansible.builtin.pushbullet (v2.9.27) — module

Sends notifications to Pushbullet

| "added in version" 2.0 of ansible.builtin"

Authors: Willy Barro (@willybarro)

preview | supported by community

Install Ansible via pip

Install with pip install ansible==2.9.27

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.
# Sends a push notification to a device
- 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.
# Sends a link to a device
- 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.
# Sends a push notification to a channel
- 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.
# Sends a push notification with title and body to a channel
- 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

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

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

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

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

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

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