File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
modules/vpc-serverless-connector-beta Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ module "serverless-connector" {
2323 machine_type = "e2-standard-4"
2424 min_instances = 2
2525 max_instances = 3
26+ max_throughput = 300
2627 }]
2728}
2829```
Original file line number Diff line number Diff line change @@ -31,7 +31,8 @@ resource "google_vpc_access_connector" "connector_beta" {
3131 project_id = lookup (each. value , " host_project_id" , null )
3232 }
3333 }
34- machine_type = lookup (each. value , " machine_type" , null )
35- min_instances = lookup (each. value , " min_instances" , null )
36- max_instances = lookup (each. value , " max_instances" , null )
34+ machine_type = lookup (each. value , " machine_type" , null )
35+ min_instances = lookup (each. value , " min_instances" , null )
36+ max_instances = lookup (each. value , " max_instances" , null )
37+ max_throughput = lookup (each. value , " max_throughput" , null )
3738}
You can’t perform that action at this time.
0 commit comments