-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make osparc-config dotenv-precommit pass: Use all caps env-vars
- Loading branch information
1 parent
5b1c3fb
commit 00bc0c7
Showing
3 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
variable "grafana_url" { | ||
variable "GRAFANA_URL" { | ||
description = "grafana_url" | ||
sensitive = false | ||
} | ||
variable "grafana_auth" { | ||
variable "GRAFANA_AUTH" { | ||
description = "Username:Password" | ||
sensitive = true | ||
} | ||
variable "prometheus_federation_url" { | ||
variable "PROMETHEUS_FEDERATION_URL" { | ||
description = "Prometheus Federation URL" | ||
sensitive = false | ||
} | ||
variable "prometheus_catchall_url" { | ||
variable "PROMETHEUS_CATCHALL_URL" { | ||
description = "Prometheus Catchall URL" | ||
sensitive = false | ||
} | ||
variable "tempo_url" { | ||
variable "TEMPO_URL" { | ||
description = "Tempo URL" | ||
sensitive = false | ||
} |