Enable region-specific behavior for tags

This article is for developers who serve Google scripts from their own server. We recommend enabling region-specific behavior for tags to unlock features such as advanced consent mode, and to control tag behavior based on where your users are.

Before you begin

This guide assumes that you have done the following:

Step 1: Set up the request header

You need to send specific request headers that contain the user's region information, as described in the sections below.

You can directly start at Step 2 if:

  • You use App Engine. App Engine sends geo headers automatically.
  • You use a different infrastructure provider than the ones listed below. You need to set up custom headers.

Cloud Run with GCP Load Balancer

You can send geolocation information either with all HTTP request headers, or for specific requests. Since adding custom request headers will incur a fee on a per 1 million request basis, we recommend to only include geo information for requests to serve Google scripts. This option initially requires more setup but helps you run your infrastructure as economically as possible.

Script requests

To include the geo headers for only script requests, you need to set up a new backend and create routing rules.

To create a new backend:

  1. Open GCP load balancer
  2. In your load balancer, open the Backend configuration section. Create a new backend service.
    Screenshot of the backend config settings
  3. Configure your new backend service:
    • Backend type: choose the network endpoint group type that your application uses. If you use Cloud Run, choose Serverless network endpoint group.
    • In New backend, pick the network endpoint group of your server-side Tag Manager deployment.
      Screenshot of the new backend service
  4. Open the section Advanced configurations. Add the custom request headers.
    Header Name Header Value
    X-Gclb-Country {client_region}
    X-Gclb-Region {client_region_subdivision}
  5. Save the new backend service.

To configure routing rules:

  1. In your load balancer, open the Routing rules section. Choose the mode Advanced host path and rule.
  2. Update the pathRules parameter to map gtm.js, /gtag/js, and /gtag/destination to the new backend service.
    pathRules:
    - paths:
      - /gtm.js
      - /gtag*
      service: projects/project_id/global/backendServices/new backend service
    - paths:
      - /*
      service: projects/project_id/global/backendServices/original backend service
    
  3. Save your changes.

All requests

To send geolocation information with all HTTP requests, you need to add custom request headers to the existing backend service, see Google Cloud documentation. Create one new custom request headers for each header below:

Header name Header Value
X-Gclb-Country {client_region}
X-Gclb-Country {client_region_subdivision}

GCP Load Balancer

You can send geolocation information either with all HTTP request headers, or for specific requests. Since adding custom request headers will incur a fee on a per 1 million request basis, we recommend to only include geo information for requests to serve Google scripts. This option initially requires more setup but helps you run your infrastructure as economically as possible.

Script requests

To include the geo headers for only script requests, you need to set up a new backend and create routing rules.

To create a new backend:

  1. Open GCP load balancer
  2. In your load balancer, open the Backend configuration section. Create a new backend service.
    Screenshot of the backend config settings
  3. Configure your new backend service:
    • Backend type: choose the network endpoint group type that your application uses. If you use Cloud Run, choose Serverless network endpoint group.
    • In New backend, pick the network endpoint group of your server-side Tag Manager deployment.
      Screenshot of the new backend service
  4. Open the section Advanced configurations. Add the custom request headers.
    Header Name Header Value
    X-Gclb-Country {client_region}
    X-Gclb-Region {client_region_subdivision}
  5. Save the new backend service.

To configure routing rules:

  1. In your load balancer, open the Routing rules section. Choose the mode Advanced host path and rule.
  2. Update the pathRules parameter to map gtm.js, /gtag/js, and /gtag/destination to the new backend service.
    pathRules:
    - paths:
      - /gtm.js
      - /gtag*
      service: projects/project_id/global/backendServices/new backend service
    - paths:
      - /*
      service: projects/project_id/global/backendServices/original backend service
    
  3. Save your changes.

All requests

To send geolocation information with all HTTP requests, you need to add custom request headers to the existing backend service, see Google Cloud documentation. Create one new custom request headers for each header below:

Header name Header Value
X-Gclb-Country {client_region}
X-Gclb-Country {client_region_subdivision}

Amazon Web Services (AWS) CloudFront

Create an origin request policy to add the CloudFront-Viewer-Country and CloudFront-Viewer-Country-Region header to the request.

This will automatically add the following headers along with their values:

Header Name Header Value
CloudFront-Viewer-Country The user's country
CloudFront-Viewer-Country-Region The user's subdivision
Header settings in AWS CloudFront

Azure Front Door

Using the Rules Engine, create a rule set with the modify request header action with the following mapping:

Header Name Header Value
X-Azure-Country {geo_country}
Screenshot of the Azure Front Door configuration

Cloudflare

Enable the "Add visitor location headers" in the managed transforms section:

This will automatically add the following header along with its value:

Header Name Header Value
CF-IPCountry The user's country
Screenshot of the cloudflare configuration

Step 2: Set up the Visitor Region variable

If you have set up geo headers as specified above, Tag Manager automatically detects the region or country by reading the HTTP request header. Alternatively, you can set up custom headers.

Automatic detection

  1. Open Google Tag Manager
  2. Open your server container.
  3. In the Variables menu, Configure the list of built-in variables.
  4. Select Visitor Region.

The geo headers will now be available to use in the Visitor Region variable.

Custom headers

  1. Open Google Tag Manager
  2. Open your server container.
  3. In the Variables menu, create a New user-defined variable of the type Visitor Region.
  4. In the Variable Configuration, choose Custom Variable.
  5. In the Variables menu, create two new Request header variables: One for your country and one for subdivision code. Fill the values with the country codes in your HTTP request header(s).

  6. Use the your created variables in the Visitor Region variable as shown in the screenshot.

    Screenshot of the variable settings

  7. Name your variable and Save it.

Step 3: Enable region-specific settings in your client

In order to use the visitor region for processing incoming HTTP requests, you have to add it to you client.

  1. Select the client or create a new client you want to apply region setting to. Supported clients are:

    • Google Tag Manager: Web container
    • Google Analytics: GA4
    • Google Analytics: Universal Analytics
  2. If you are configuring GA4 or UA clients, check the box Default gtag.js paths for specific IDs and enter the measurement ID of your web container.

  3. Check Enable region-specific settings. Add the {{Visitor Region}} variable that you created in the previous step to the Region field.

  4. Save your client.

Step 4: Verify that region settings apply

To test if your settings work:

  1. Open Preview mode for your server container.
  2. Load your website while using first-party serving.
  3. In the preview window, click on the Claimed Google Analytics GA4 or Universal Analytics client. Screenshot of client
  4. To see the actual region, change the Display Variables radio button to values. Screenshot of the visitor region field
    • ✅ Your implementation is correct if the Region property displays a country code.
    • ❌ If the Region property displays undefined or is missing, your server isn't receiving any region data. Check if the server's HTTP headers are set up according to the predefined variables Google Tag Manager is looking for, see Set up the request header.

Next steps