Using Console
Using CLI
gcloud components update
.gcloud config set project [PROJECT_ID]
to set the project where the misconfiguration exists.gcloud compute backend-services list
to list all the backend services in the project.gcloud compute backend-services update [BACKEND_SERVICE_NAME] --load-balancing-scheme internal --load-balancing-mode UTILIZATION --max-utilization 0.8 --connection-draining-timeout 300 --session-affinity NONE --health-checks [HEALTH_CHECK_NAME] --enable-logging --global --subnet [SUBNET_NAME] --database-subnet [DATABASE_SUBNET_NAME] --enable-cdn --l4-ilb-subsetting-enabled
to enable L4 ILB subsetting for the backend service.Using Python