FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit dddb7f92 authored by Wajdi Hajji's avatar Wajdi Hajji Committed by Arun Patel
Browse files

Added Cloud NAT "min ports per VM" config

(cherry picked from commit a068f599)
parent deffb168
No related branches found
No related tags found
1 merge request!35Added Cloud NAT "min ports per VM" config
......@@ -50,6 +50,7 @@ resource "google_compute_router_nat" "static-ip-nat" {
nat_ips = [google_compute_address.static-ip[0].self_link]
nat_ip_allocate_option = "MANUAL_ONLY"
region = var.cloud_run_region
min_ports_per_vm = var.min_ports_per_vm
source_subnetwork_ip_ranges_to_nat = "LIST_OF_SUBNETWORKS"
subnetwork {
......
......@@ -209,6 +209,16 @@ variable "static_egress_ip_cidr_range" {
description = "The cidr range used to create a subnet that this cloud run will use if assigned a static ip"
}
variable "min_ports_per_vm" {
default = 64
type = number
description = <<-EOL
When using Cloud NAT to provide an egress route, Cloud NAT's minimum ports per VM
can be configured to determine how many concurrent connections can be established
to the same destination IP address and port.
EOL
}
variable "secrets_volume" {
type = list(object({
name = string # name of the file that is going to be mounted
......
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