Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Keep env var names consistent for Grafana pgsql datasource #1105

Merged
merged 1 commit into from
Oct 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions grafana/datasources/datasources-pgsql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ apiVersion: 1
datasources:
- name: pgsql
type: postgres
url: $PGHOST:$PGPORT
user: $PGGRAFANAUSER
database: $PGDATABASE
url: $GRAFANA_PGSQL_HOST:$GRAFANA_PGSQL_PORT
user: $GRAFANA_PGSQL_USER
database: $GRAFANA_PGSQL_DATABASE
secureJsonData:
password: $PGGRAFANAPASSWORD
password: $GRAFANA_PGSQL_PASSWORD
jsonData:
sslmode: $PGSSLMODE
sslmode: $GRAFANA_PGSQL_SSLMODE
Loading