Get information about checkly environment variables.
Version added: 0.3.0
- Get information about checkly environment variables.
- https://www.checklyhq.com/docs/api#tag/Environment-variables
The below requirements are needed on the host that executes this module.
- requests
- name: get all alert channels from checkly
community.missing_collection.checkly_variables_info:
api_key: 'a8f08873c494445ba156e572e1324300'
- name: get one alert channel from checkly
community.missing_collection.checkly_variables_info:
api_key: 'a8f08873c494445ba156e572e1324300'
key: 'GITHUB_TOKEN'
Common return values are documented here, the following are the fields unique to this module:
Key | Returned | Description |
---|---|---|
result
list/dict
|
when success. |
result of checkly api.
Sample:
[{'key': 'string', 'value': '', 'locked': False}]
|
- Davinder Pal (@116davinder) <dpsangwal@gmail.com>