We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d1d1c6 commit 0b3279bCopy full SHA for 0b3279b
terraform/nowcasting/development/main.tf
@@ -135,6 +135,7 @@ module "uk-national-quartz-api" {
135
{ "name" : "AUTH0_DOMAIN", "value" : var.auth_domain },
136
{ "name" : "AUTH0_AUDIENCE", "value" : var.auth_api_audience },
137
{ "name" : "AUTH0_RULE_NAMESPACE", "value" : "https://openclimatefix.org"},
138
+ { "name" : "APITALLY_CLIENT_ID", "value" : var.apitally_client_id},
139
# legacy, we shouldnt need this in the future,
140
# but we need this for status in the mean time
141
{ "name" : "DB_URL", "value" : module.database.forecast-database-secret-url },
@@ -372,6 +373,7 @@ module "quartz-api" {
372
373
{ "name" : "ENVIRONMENT", "value": local.environment},
374
{ "name" : "DATA_PLATFORM_HOST", "value": module.data_platform_api.api_url},
375
{ "name" : "DATA_PLATFORM_PORT", "value": "50051"},
376
377
]
378
container-name = "quartz-api"
379
container-tag = var.quartz-api
terraform/nowcasting/development/variables.tf
@@ -98,4 +98,9 @@ variable "uk-national-quartz-api" {
98
type = string
99
description = "Docker image tag for the uk national quartz api"
100
default = "0.3.4"
101
-}
+}
102
+
103
+variable "apitally_client_id" {
104
+ description = "The client id for APItally"
105
+ default = ""
106
0 commit comments