Management of the checkly Snippets.
Version added: 0.3.0
- Management of the checkly Snippets
- https://www.checklyhq.com/docs/api#tag/Snippets
The below requirements are needed on the host that executes this module.
- requests
- name: create snippet
community.missing_collection.checkly_snippets:
api_key: 'b8155af5c45a476fb60c294c33ff549e'
command: 'create'
name: 'consoleTest'
script: "console.log('test');"
- name: update snippet code
community.missing_collection.checkly_snippets:
api_key: 'b8155af5c45a476fb60c294c33ff549e'
command: 'update'
id: '1704'
name: 'consoleTest'
script: "console.log('test1');"
- name: delete snippet
community.missing_collection.checkly_snippets:
api_key: 'b8155af5c45a476fb60c294c33ff549e'
command: 'delete'
id: '1704'
Common return values are documented here, the following are the fields unique to this module:
- Davinder Pal (@116davinder) <dpsangwal@gmail.com>