Avoid single quotes on variable

This commit is contained in:
Luis Guzmán 2020-07-04 04:21:23 -05:00
parent 44364927d7
commit c766cb2b54
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ curl -X PUT -H "Content-Type: application/json" -d '{
}' http://admin:admin@localhost:3000/api/user/password
# Create InfluxDB datasource
curl 'http://admin:$GRAFANA_PASS@localhost:3000/api/datasources' -X \
curl "http://admin:$GRAFANA_PASS@localhost:3000/api/datasources" -X \
POST -H 'Content-Type: application/json;charset=UTF-8' \
--data-binary \
'{"name":"InfluxDB","type":"influxdb","url":"http://localhost:8086","access":"proxy","isDefault":true,"database":"jitsi"}'