community.healthchecksio.checks_info (1.3.1) — module

Get a list of checks

| "added in version" 0.1.0 of community.healthchecksio"

Authors: Mark Mercado (@mamercad)

Install collection

Install with ansible-galaxy collection install community.healthchecksio:==1.3.1


Add to requirements.yml

  collections:
    - name: community.healthchecksio
      version: 1.3.1

Description

Returns a list of checks belonging to the user, optionally filtered by one or more tags.

Inputs

    
tags:
    description:
    - Filters the checks and returns only the checks that are tagged with the specified
      value.
    elements: str
    required: false
    type: list

uuid:
    description:
    - If specified, returns this specific check.
    required: false
    type: str

state:
    choices:
    - present
    default: present
    description:
    - C(present) will return the check(s).
    type: str

api_token:
    aliases:
    - api_key
    description:
    - Healthchecks.io API token.
    - 'There are several environment variables which can be used to provide this value:'
    - C(HEALTHCHECKSIO_API_TOKEN), C(HEALTHCHECKSIO_API_KEY), C(HC_API_TOKEN), C(HC_API_KEY)
    required: true
    type: str