Management of the checkly maintenance windows.
Version added: 0.3.0
- Management of the checkly maintenance windows.
- https://www.checklyhq.com/docs/api#tag/Environment-variables
The below requirements are needed on the host that executes this module.
- requests
- name: create maintenance window
community.missing_collection.checkly_mw:
api_key: 'f7b0813b3428419d8b9c5ebb86fcca52'
command: 'create'
name: 'testMW'
ends_at: "2021-09-07"
start_at: "2021-09-06"
repeat_unit: "DAY"
repeat_ends_at: "2021-09-24"
repeat_interval: "1"
tags:
- 'api'
register: __
- name: update maintenance window
community.missing_collection.checkly_mw:
api_key: 'f7b0813b3428419d8b9c5ebb86fcca52'
command: 'update'
id: "{{ __.result.id }}"
name: 'testNewMW'
ends_at: "2021-09-07"
start_at: "2021-09-06"
repeat_unit: "DAY"
repeat_ends_at: "2021-09-28"
repeat_interval: "2"
tags:
- 'api'
- 'axway'
- name: delete maintenance window
community.missing_collection.checkly_mw:
api_key: 'f7b0813b3428419d8b9c5ebb86fcca52'
command: 'delete'
id: "{{ __.result.id }}"
Common return values are documented here, the following are the fields unique to this module:
- Davinder Pal (@116davinder) <dpsangwal@gmail.com>