Skip to content

Commit

Permalink
fixup! fixup! fix linting with ansible-lint write
Browse files Browse the repository at this point in the history
  • Loading branch information
rndmh3ro committed Jan 4, 2024
1 parent a5bf7ac commit 217d679
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
- name: Create dingding notification channel
register: result
community.grafana.community.grafana.grafana_notification_channel:
community.grafana.grafana_notification_channel:
uid: dingding
name: dingding
type: dingding
Expand All @@ -22,7 +22,7 @@

- name: Create dingding notification channel (idempotency)
register: result
community.grafana.community.grafana.grafana_notification_channel:
community.grafana.grafana_notification_channel:
uid: dingding
name: dingding
type: dingding
Expand All @@ -43,7 +43,7 @@

- name: Delete dingding notification channel
register: result
community.grafana.community.grafana.grafana_notification_channel:
community.grafana.grafana_notification_channel:
uid: dingding
state: absent
grafana_url: "{{ grafana_url }}"
Expand All @@ -59,7 +59,7 @@

- name: Delete dingding notification channel (idempotency)
register: result
community.grafana.community.grafana.grafana_notification_channel:
community.grafana.grafana_notification_channel:
uid: dingding
state: absent
grafana_url: "{{ grafana_url }}"
Expand Down

0 comments on commit 217d679

Please sign in to comment.