Skip to content

Commit 8a0eb36

Browse files
Promote connection_tracking_policy field in google_compute_region_backend_service from beta to GA (#17396) (#1307)
[upstream:12d6075a87be9b97790f690333a229a1d82c74c6] Signed-off-by: Modular Magician <magic-modules@google.com>
1 parent 1b14d49 commit 8a0eb36

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

  • region_backend_service_connection_tracking

region_backend_service_connection_tracking/main.tf

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
resource "google_compute_region_backend_service" "default" {
2-
provider = google-beta
32
name = "region-service-${local.name_suffix}"
43
region = "us-central1"
54
health_checks = [google_compute_region_health_check.health_check.id]
@@ -11,12 +10,11 @@ resource "google_compute_region_backend_service" "default" {
1110
tracking_mode = "PER_SESSION"
1211
connection_persistence_on_unhealthy_backends = "NEVER_PERSIST"
1312
idle_timeout_sec = 60
14-
enable_strong_affinity = true
13+
enable_strong_affinity = false
1514
}
1615
}
1716

1817
resource "google_compute_region_health_check" "health_check" {
19-
provider = google-beta
2018
name = "rbs-health-check-${local.name_suffix}"
2119
region = "us-central1"
2220

0 commit comments

Comments
 (0)