AWS with Google Tag Manager and Firestore

0

Hello,

If I set up Google Tag Manager Server-Side with AWS, do you think that if I include Google Cloud credentials on AWS, I can query Firestore from inside the GTM Server-Side? If so, can you provide with some details or steps on how to achive this?

Google Cloud https://developers.google.com/tag-platform/tag-manager/server-side/manual-setup-guide

Alina
asked a month ago360 views
1 Answer
0

While Google Tag Manager server-side on AWS could potentially query Firestore, there are some important considerations: [1]

  • GTM server-side containers run inside AWS, so any Firestore access would need to go through Google APIs over the public internet, which may impact performance.
  • You'd need to configure a Google Cloud service account in AWS with the proper Firestore permissions and securely pass the credentials to the GTM container.
  • GTM JavaScript variables and tags run at a lower privilege level than server code, so some Firestore operations may not be supported.

As an alternative, you could build a Lambda function that queries Firestore and passes the results to the GTM container as custom JavaScript variables. This keeps the Firestore access centralized in AWS rather than distributing credentials. Some key steps:

  • Use AWS Secrets Manager to store your access keys
  • Write a Lambda function that uses the service account to access Firestore
  • Configure a GTM trigger to call the Lambda function on relevant pageviews
  • Return Firestore data from Lambda to populate GTM variables

Let me know if any part of the process needs more explanation. The Lambda approach may perform better while still integrating Firestore data into your GTM container.

Source:

[1]: Guidance for Using Google Tag Manager for Server-Side Website Analytics on AWS

profile pictureAWS
answered a month ago
profile picture
EXPERT
reviewed a month ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions