In GCP, I created a custom SSL Policy for my load balancer thinking it would improve my security posture instead of using default GCP Policy.
Here is my terraform script for the policy
resource "google_compute_ssl_policy" "ssl_policy" {
name = "load-balancer-ssl-policy"
min_tls_version = "TLS_1_2"
profile = "MODERN"
}
But, when making a request in Postman or using curl, I get this error
Enable JavaScript and cookies to continue
But in the browser, it works perfectly.