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
已提问 2 个月前368 查看次数
1 回答
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
已回答 2 个月前
profile picture
专家
已审核 2 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则