Skip to content

Commit 07c09aa

Browse files
committed
fixed terraform error
1 parent 56be0b7 commit 07c09aa

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

functions-python/tasks_executor/requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ requests~=2.32.3
99
attrs~=23.1.0
1010
pluggy~=1.3.0
1111
certifi~=2024.7.4
12+
fastapi
13+
uvicorn[standard]
14+
1215

1316
# SQL Alchemy and Geo Alchemy
1417
SQLAlchemy==2.0.23

infra/functions-python/main.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ locals {
8181
[for x in local.function_backfill_dataset_service_date_range_config.secret_environment_variables : x.key],
8282
[for x in local.function_update_feed_status_config.secret_environment_variables : x.key],
8383
[for x in local.function_export_csv_config.secret_environment_variables : x.key],
84-
[for x in local.function_tasks_executor_config.secret_environment_variables : x.key],
84+
[for x in local.function_tasks_executor_config.secret_environment_variables : x.key]
8585
)
8686

8787
# Convert the list to a set to ensure uniqueness
@@ -998,7 +998,6 @@ resource "google_cloudfunctions2_function" "reverse_geolocation_processor" {
998998
PYTHONNODEBUGRANGES = 0
999999
DATASETS_BUCKET_NAME_GTFS = "${var.datasets_bucket_name}-${var.environment}"
10001000
DATASETS_BUCKET_NAME_GBFS = "${var.gbfs_bucket_name}-${var.environment}"
1001-
FUNCTION_URL_REFRESH_MV = "https://${var.gcp_region}-${var.project_id}.cloudfunctions.net/refresh-materialized-view"
10021001
}
10031002
available_memory = local.function_reverse_geolocation_config.available_memory
10041003
timeout_seconds = 3600

0 commit comments

Comments
 (0)