> For the complete documentation index, see [llms.txt](https://cortex-docs.paloaltonetworks.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cortex-docs.paloaltonetworks.com/appsec-rules/iac-security/networking/appsec2-gcp-37.md).

# GCP public-facing (external) regional load balancer using HTTP protocol misconfiguration detected in

## Rule Details

|                       |                                      |
| --------------------- | ------------------------------------ |
| Cortex AppSec Rule ID | APPSEC2\_GCP\_37                     |
| Category              | Networking                           |
| Provider              | GCP                                  |
| Severity              | MEDIUM                               |
| Framework             | Terraform, Terraform Plan            |
| Mapped CSPM/KSPM Rule | c53fa2b3-af35-44b4-a9ff-da1d3dd81c17 |

## Impact

This rule identifies GCP public-facing (external) regional load balancers that are using HTTP protocol.

Using the HTTP protocol with a GCP external load balancer transmits data in plaintext, making it vulnerable to eavesdropping, interception, and modification by malicious actors. This lack of encryption exposes sensitive information, increases the risk of man-in-the-middle attacks, and compromises the overall security and privacy of the data exchanged between clients and servers.

It is recommended to use HTTPS protocol with external-facing load balancers.

## How to Fix

## To fix the issue, ensure that the forwarding rule associated with your load balancer does not utilize HTTP proxies. Instead, you should set the `load_balancing_scheme` to `EXTERNAL` with a backend that does not rely on HTTP proxy configurations. Make sure that your forwarding rules effectively utilize the appropriate backend service while complying with this requirement. \[source,go]

resource "google\_compute\_forwarding\_rule" "example" { ... load\_balancing\_scheme = "EXTERNAL"

* target = "<https://www.googleapis.com/compute/v1/projects/my-project/global/targetHttpProxies/my-target-proxy>"
* target = "<https://www.googleapis.com/compute/v1/projects/my-project/global/targetSslProxies/my-target-proxy>" ... }

***


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://cortex-docs.paloaltonetworks.com/appsec-rules/iac-security/networking/appsec2-gcp-37.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
