Support multiple protocols (L3_DEFAULT) through net-ilb-int

This commit is contained in:
Luca Prete
2023-10-04 10:30:11 +02:00
committed by GitHub
parent d9ab23a19e
commit 20dd3df27c
4 changed files with 53 additions and 19 deletions

View File

@@ -36,6 +36,7 @@ variable "backend_service_config" {
ratio = optional(number)
}))
log_sample_rate = optional(number)
protocol = optional(string, "UNSPECIFIED")
session_affinity = optional(string)
timeout_sec = optional(number)
})
@@ -202,7 +203,7 @@ variable "project_id" {
}
variable "protocol" {
description = "IP protocol used, defaults to TCP."
description = "Forwarding rule protocol used, defaults to TCP."
type = string
default = "TCP"
}