From 6ebdbef1b4a480c177ba02577d0ca9dd9d806a22 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Wed, 9 May 2018 13:15:42 -0600 Subject: [PATCH] ceph-grafana: Use 'admin_user', not 'user' We missed this when merging #165 & #170 Signed-off-by: Zack Cerza --- ansible/roles/ceph-grafana/tasks/add_notification_channel.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/roles/ceph-grafana/tasks/add_notification_channel.yml b/ansible/roles/ceph-grafana/tasks/add_notification_channel.yml index 6faedc2..fc1e942 100644 --- a/ansible/roles/ceph-grafana/tasks/add_notification_channel.yml +++ b/ansible/roles/ceph-grafana/tasks/add_notification_channel.yml @@ -3,7 +3,7 @@ uri: url: "http://localhost:3000/api/alert-notifications" method: GET - user: "{{ grafana.user }}" + user: "{{ grafana.admin_user }}" password: "{{ grafana.admin_password }}" force_basic_auth: yes status_code: 200 @@ -22,7 +22,7 @@ uri: url: "http://localhost:3000/api/alert-notifications" method: POST - user: "{{ grafana.user }}" + user: "{{ grafana.admin_user }}" password: "{{ grafana.admin_password }}" force_basic_auth: yes status_code: 200 -- 2.47.3