Skip to content

Commit 32bf066

Browse files
H2C protocol added to backend_service and region_backend_service (#13910) (#991)
[upstream:78d6f37e528d43dcaf3e83d763906525fec3eb55] Signed-off-by: Modular Magician <[email protected]>
1 parent 3f078cb commit 32bf066

File tree

2 files changed

+2
-1
lines changed
  • backend_service_external_managed
  • region_backend_service_balancing_mode

2 files changed

+2
-1
lines changed

backend_service_external_managed/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ resource "google_compute_backend_service" "default" {
22
name = "backend-service-${local.name_suffix}"
33
health_checks = [google_compute_health_check.default.id]
44
load_balancing_scheme = "EXTERNAL_MANAGED"
5+
protocol = "H2C"
56
}
67

78
resource "google_compute_health_check" "default" {

region_backend_service_balancing_mode/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ resource "google_compute_region_backend_service" "default" {
99

1010
region = "us-central1"
1111
name = "region-service-${local.name_suffix}"
12-
protocol = "HTTP"
12+
protocol = "H2C"
1313
timeout_sec = 10
1414

1515
health_checks = [google_compute_region_health_check.default.id]

0 commit comments

Comments
 (0)