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

add variables for indai pro analysis dashboard #701

Merged
merged 1 commit into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions terraform/india/production/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,8 @@ module "analysis_dashboard" {
{ "name" : "ORIGINS", "value" : "*" },
{ "name" : "REGION", "value": local.domain},
{ "name" : "ENVIRONMENT", "value": local.environment},
{ "name" : "AUTH0_DOMAIN", "value" : var.auth_domain },
{ "name" : "AUTH0_CLIENT_ID", "value" : var.auth_dashboard_client_id },
]
container-name = "analysis-dashboard"
container-tag = var.analysis_dashboard_version
Expand Down
5 changes: 5 additions & 0 deletions terraform/india/production/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,8 @@ variable satellite-consumer {
default = "0.0.1"
description = "Container image tag of the satellite data consumer to use: openclimatefix/satip"
}

variable "auth_dashboard_client_id" {
description = "The Auth client id for the dashboard that should be used"
default = "not-set"
}