Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7a8675b

Browse files
committedMay 10, 2025··
region dev override
1 parent 57d17a4 commit 7a8675b

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed
 

‎terraform/dev/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ module "endpoints" {
157157
environment = "dev"
158158
source_directory = "../../src"
159159
function_name = "tech-report-api"
160+
region = var.region
160161
service_account_email = var.google_service_account_cloud_functions
161162
service_account_api_gateway = var.google_service_account_api_gateway
162163
max_instance_request_concurrency = var.max_instance_request_concurrency

‎terraform/dev/variables.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,8 @@ variable "max_instance_request_concurrency" {
2525
type = number
2626
default = 1
2727
}
28+
29+
variable "region" {
30+
default = "us-central1"
31+
type = string
32+
}

0 commit comments

Comments
 (0)
Please sign in to comment.