FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 1a2191e3 authored by Adam Deacon's avatar Adam Deacon
Browse files

Merge branch 'add-max-throughput' into 'master'

Allow max_throughput to be overridden for vpc_access_connector

See merge request !62
parents cbf36cde 821e7c63
No related branches found
No related tags found
1 merge request!62Allow max_throughput to be overridden for vpc_access_connector
Pipeline #474199 passed
......@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [8.4.0] - 2023-09-11
### Added
- new variable `vpc_access_connector_max_throughput` to allow max_throughput to be set on the vpc_access_connector resource.
## [8.3.0] - 2023-08-18
### Added
......
......@@ -19,6 +19,8 @@ resource "google_vpc_access_connector" "static-ip-connector" {
}
region = var.cloud_run_region
max_throughput = var.vpc_access_connector_max_throughput
lifecycle {
ignore_changes = [
network,
......
......@@ -435,3 +435,12 @@ variable "image_name" {
error_message = "The image_name value must be a valid URL to a container image."
}
}
variable "vpc_access_connector_max_throughput" {
type = number
default = 300
description = <<-EOL
Optional. The maximum throughput of the connector in megabytes per second.
Defaults to 300.
EOL
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment