File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
infra/gcp/terraform/k8s-infra-oci-proxy Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -130,6 +130,7 @@ resource "google_cloud_run_service" "regions" {
130
130
service_account_name = google_service_account. oci-proxy . email
131
131
containers {
132
132
image = local. image
133
+ args = [ " -v3" ]
133
134
}
134
135
container_concurrency = 5
135
136
// 30 seconds less than cloud scheduler maximum.
Original file line number Diff line number Diff line change @@ -22,7 +22,22 @@ variable "tag" {
22
22
variable "cloud_run_regions" {
23
23
type = list (string )
24
24
default = [
25
+ # asia
26
+ " asia-east1" ,
27
+ " asia-northeast1" ,
28
+ " asia-northeast2" ,
29
+ # europe
30
+ " europe-north1" ,
31
+ " europe-southwest1" ,
32
+ " europe-west1" ,
33
+ " europe-west8" ,
34
+ " europe-west9" ,
35
+ # us
25
36
" us-central1" ,
37
+ " us-east1" ,
38
+ " us-east4" ,
39
+ " us-east5" ,
40
+ " us-south1" ,
26
41
" us-west1"
27
42
]
28
43
}
You can’t perform that action at this time.
0 commit comments