grafana-ansible-collection/tests/integration/targets/cloud_plugin/tasks/main.yml
Ishan Jain 8eeaea2aa8
Adding idempotency fixes for alerting, cloud and folder modules
* Fixing cloud_plugin idempotency

* Sanity check fixes

* fix test

* fix

* reset test

* Add 9dempotency check to test

* Working cloud_plugin with idempotency

* Adding idempotency for contactPoint

* fixes

* Tests update

* sanity fix

* Fixed

* Fixes

* sanity fix

* Fix sanity

* fixes

* fixes

* Fixed idempotency

* fix sanity

* alert_notification update

* fix notification

* fixes

* folder idempotency

* folder test

Co-authored-by: ishanjainn <ishan.jain@gmail.com>
2022-11-01 12:52:19 +05:30

55 lines
1.4 KiB
YAML

- name: Add a plugin
grafana.grafana.cloud_plugin:
name: grafana-github-datasource
version: 1.0.14
stack_slug: "{{ stack_name }}"
cloud_api_key: "{{ grafana_cloud_api_key }}"
state: present
register: add_result
- assert:
that:
- add_result.changed == true
- add_result.pluginName == "GitHub"
- name: Idempotency Check
grafana.grafana.cloud_plugin:
name: grafana-github-datasource
version: 1.0.14
stack_slug: "{{ stack_name }}"
cloud_api_key: "{{ grafana_cloud_api_key }}"
state: present
register: idempotency_result
- assert:
that:
- idempotency_result.changed == false
- idempotency_result.pluginName == "GitHub"
- name: Update a plugin
grafana.grafana.cloud_plugin:
name: grafana-github-datasource
version: 1.0.15
stack_slug: "{{ stack_name }}"
cloud_api_key: "{{ grafana_cloud_api_key }}"
state: present
register: update_result
- assert:
that:
- update_result.changed == true
- update_result.pluginName == "GitHub"
- name: Delete a plugin
grafana.grafana.cloud_plugin:
name: grafana-github-datasource
version: 1.0.15
stack_slug: "{{ stack_name }}"
cloud_api_key: "{{ grafana_cloud_api_key }}"
state: absent
register: delete_result
- assert:
that:
- delete_result.changed == true
- delete_result.pluginName == "GitHub"