Skip to content

Commit

Permalink
Merge pull request #410 from DFE-Digital/341-cbl-preprod-bigquery-mis…
Browse files Browse the repository at this point in the history
…configured

Configure preprod bigquery dataset name correctly
  • Loading branch information
richardpattinson authored Oct 24, 2024
2 parents 5c35de5 + 20b67b1 commit 97df198
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/aks/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ locals {
local.app_config,
{
BIGQUERY_PROJECT_ID = "teaching-qualifications",
BIGQUERY_DATASET = "ccbl_events_${var.environment}",
BIGQUERY_DATASET = var.environment == "preproduction" ? "ccbl_events_preprod" : "ccbl_events_${var.environment}",
BIGQUERY_TABLE_NAME = "events",
DB_SSLMODE = local.postgres_ssl_mode,
HOSTING_ENVIRONMENT = var.environment,
Expand Down

0 comments on commit 97df198

Please sign in to comment.