grafana-ansible-collection/tests/integration/targets/cloud_stack/tasks/main.yml

31 lines
796 B
YAML

- name: Create a Grafana Cloud stack
grafana.grafana.cloud_stack:
name: ansiblestacktest
stack_slug: ansiblestacktest
cloud_api_key: "{{ grafana_cloud_api_key }}"
org_slug: "{{ org_name }}"
state: present
register: create_result
- assert:
that:
- create_result.url == "https://ansiblestacktest.grafana.net"
- name: Sleep for 30 seconds
ansible.builtin.wait_for:
timeout: 30
- name: Delete a Grafana Cloud stack
grafana.grafana.cloud_stack:
name: ansiblestacktest
stack_slug: ansiblestacktest
cloud_api_key: "{{ grafana_cloud_api_key }}"
org_slug: "{{ org_name }}"
state: absent
register: delete_result
- assert:
that:
- delete_result.changed == true
- delete_result.url == "https://ansiblestacktest.grafana.net"