We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57d17a4 commit 7a8675bCopy full SHA for 7a8675b
terraform/dev/main.tf
@@ -157,6 +157,7 @@ module "endpoints" {
157
environment = "dev"
158
source_directory = "../../src"
159
function_name = "tech-report-api"
160
+ region = var.region
161
service_account_email = var.google_service_account_cloud_functions
162
service_account_api_gateway = var.google_service_account_api_gateway
163
max_instance_request_concurrency = var.max_instance_request_concurrency
terraform/dev/variables.tf
@@ -25,3 +25,8 @@ variable "max_instance_request_concurrency" {
25
type = number
26
default = 1
27
}
28
+
29
+variable "region" {
30
+ default = "us-central1"
31
+ type = string
32
+}
0 commit comments