16 lines
406 B
YAML
16 lines
406 B
YAML
|
- name: Set Notification policy tree
|
||
|
grafana.grafana.alert_notification_policy:
|
||
|
stack_slug: "{{ stack_name }}"
|
||
|
grafana_api_key: "{{ grafana_api_key }}"
|
||
|
routes: [
|
||
|
{
|
||
|
receiver: grafana-default-email,
|
||
|
object_matchers: [["env", "=", "Production"]],
|
||
|
}
|
||
|
]
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- result.failed == false
|
||
|
- result.output.provenance == "api"
|