Management of the checkly Dashboards.
Version added: 0.3.0
- Management of the checkly Dashboards.
- https://www.checklyhq.com/docs/api#tag/Dashboards
The below requirements are needed on the host that executes this module.
- requests
- name: create a dashboard
community.missing_collection.checkly_dashboards:
api_key: '4a7734debb54464e9fefe8b4f14b896e'
command: 'create'
custom_domain: '6605c28f.axway.com'
custom_url: "6605c28f"
header: 'Managed by Ansible Automation'
tags:
- 'api'
- 'axway'
logo: 'https://upload.wikimedia.org/wikipedia/en/8/8a/Axway_Software_logo_June_2017.png'
register: __
- name: update a dashboard
community.missing_collection.checkly_dashboards:
api_key: '4a7734debb54464e9fefe8b4f14b896e'
command: 'update'
custom_domain: '6605c28f.axway.com'
custom_url: "6605c28f"
header: 'Managed by Ansible Automation'
tags:
- 'api'
- 'axway'
id: '{{ __.result.dashboardId }}'
logo: 'https://upload.wikimedia.org/wikipedia/en/8/8a/Axway_Software_logo_June_2017.png'
- name: delete a dashboard
community.missing_collection.checkly_dashboards:
api_key: '4a7734debb54464e9fefe8b4f14b896e'
command: 'delete'
id: '{{ __.result.dashboardId }}'
Common return values are documented here, the following are the fields unique to this module:
- Davinder Pal (@116davinder) <dpsangwal@gmail.com>