Skip to content

Latest commit

 

History

History
153 lines (120 loc) · 4.62 KB

community.missing_collection.checkly_runtimes_info_module.rst

File metadata and controls

153 lines (120 loc) · 4.62 KB

community.missing_collection.checkly_runtimes_info

Get information from checkly about Runtimes.

Version added: 0.3.0

The below requirements are needed on the host that executes this module.

  • requests
Parameter Choices/Defaults Comments
api_key
string / required
api key for checkly.
id
string
runtime id/name.
url
string
Default:
checkly api.

- name: get details of all checkly runtimes
  community.missing_collection.checkly_runtimes_info:
    api_key: 'a8f0xxxxxxxxxxx00'
  register: __

- name: get details of one specific runtimes
  community.missing_collection.checkly_runtimes_info:
    api_key: 'a8f0xxxxxxxxxxx00'
    id: '{{ __.result[0].name }}'

Common return values are documented here, the following are the fields unique to this module:

Key Returned Description
result
dict/list
when success.
result of the api.

Sample:
[{'name': 'string', 'default': True, 'description': 'string', 'dependencies': {}}]


Authors