Skip to content

Commit

Permalink
Configure preprod bigquery dataset name correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
richardpattinson committed Oct 16, 2024
1 parent 5c35de5 commit 20b67b1
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 20b67b1

Please sign in to comment.