Hi,
i am using grafana for create data visualización of my customers,
each client have a org in grafana, and i want do no have to config the same datasource for each org,
is there any way that do this?
example, i trying to provisioning datasource, using something like:
apiVersion: 1
datasources:
- name: MySQL
type: mysql
url: estonosirve.xwqdsfdfdsf.us-west-2.rds.amazonaws.com:3306
database: test
user: user_test
password: ‘password_test’
orgId: 1 - name: MySQL
type: mysql
url: estonosirve.xwqdsfdfdsf.us-west-2.rds.amazonaws.com:3306
database: test
user: user_test
password: ‘password_test’
orgId: 1
can i make something like this:
apiVersion: 1
datasources:
- name: MySQL
type: mysql
url: estonosirve.xwqdsfdfdsf.us-west-2.rds.amazonaws.com:3306
database: test
user: user_test
password: ‘password_test’
orgId: -1
(for all orgs)
thanks,