Skip to content

Commit

Permalink
Add min_throughput to vpc-serverless-connector-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
soringumeni1 committed Aug 6, 2024
1 parent 2e75f03 commit 92f0810
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions modules/vpc-serverless-connector-beta/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ module "serverless-connector" {
machine_type = "e2-standard-4"
min_instances = 2
max_instances = 3
min_throughput = 200
max_throughput = 300
}]
}
Expand Down
1 change: 1 addition & 0 deletions modules/vpc-serverless-connector-beta/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,6 @@ resource "google_vpc_access_connector" "connector_beta" {
machine_type = lookup(each.value, "machine_type", null)
min_instances = lookup(each.value, "min_instances", null)
max_instances = lookup(each.value, "max_instances", null)
min_throughput = lookup(each.value, "min_throughput", null)
max_throughput = lookup(each.value, "max_throughput", null)
}

0 comments on commit 92f0810

Please sign in to comment.