diff --git a/ansible/roles/grafana/tasks/post_config.yml b/ansible/roles/grafana/tasks/post_config.yml
index a2742e7359..3833c1fdee 100644
--- a/ansible/roles/grafana/tasks/post_config.yml
+++ b/ansible/roles/grafana/tasks/post_config.yml
@@ -6,7 +6,7 @@
 
 - name: Enable influxdb datasource
   uri:
-    url: "{{ internal_protocol }}://{{ api_interface_address }}:{{ grafana_server_port }}/api/datasources"
+    url: "{{ internal_protocol }}://{{ kolla_internal_vip_address }}:{{ grafana_server_port }}/api/datasources"
     method: POST
     user: admin
     password: "{{ grafana_admin_password }}"
@@ -15,6 +15,8 @@
     force_basic_auth: yes
     status_code: 200, 409
   register: response
+  run_once: True
+  connection: local
   when: grafana_data_source is defined
   changed_when: response.status == 200
   failed_when: response.status not in [200, 409] or