TLS configuration of Google Cloud load balancers is defined through SSL policies. There are three managed profiles to choose from: COMPATIBLE (default), MODERN and RESTRICTED:

Noncompliant Code Example

resource "google_compute_ssl_policy" "example" {
  name            = "example"
  min_tls_version = "TLS_1_2"
  profile         = "COMPATIBLE" # Noncompliant
}

Compliant Solution

resource "google_compute_ssl_policy" "example" {
  name            = "example"
  min_tls_version = "TLS_1_2"
  profile         = "RESTRICTED"
}

See