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

Pause/unpause Pingdom alerts

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

Authors: Dylan Silva (@thaumos), Justin Johns (!UNKNOWN)

preview | supported by community

Install Ansible via pip

Install with pip install ansible==2.9.27

Description

This module will let you pause/unpause Pingdom alerts


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
# Pause the check with the ID of 12345.
- pingdom:
    uid: example@example.com
    passwd: password123
    key: apipassword123
    checkid: 12345
    state: paused
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
# Unpause the check with the ID of 12345.
- pingdom:
    uid: example@example.com
    passwd: password123
    key: apipassword123
    checkid: 12345
    state: running

Inputs

    
key:
    description:
    - Pingdom API key.
    required: true

uid:
    description:
    - Pingdom user ID.
    required: true

state:
    choices:
    - running
    - paused
    description:
    - Define whether or not the check should be running or paused.
    required: true

passwd:
    description:
    - Pingdom user password.
    required: true

checkid:
    description:
    - Pingdom ID of the check.
    required: true