Hi - I followed this doc in order to setup GTM server side In App Engine: https://developers.google.com/tag-manager/serverside/script-user-guide
Using this command as per the instructions runs a script to auto configure GTM: bash -c "$(curl -fsSL https://googletagmanager.com/static/serverjs/setup.sh)" However, that script sets up a Flexible instance of App Engine - I only need a Standard instance. I would edit the yaml file but that script seems to delete it (GCP support confirmed this earlier). I've setup a new App Engine instance - F1 - my question is how do I configure it with the configuration reference provided in GTM. I think the relevant bit of the script above is this: prompt_container_config() { while [[ -z "${container_config}" || "${container_config}" == '?' ]]; do suggested="$(generate_suggested "${cur_container_config}" "Required")" printf "Container Config (${suggested}): " read container_config if [[ -z "${container_config}" ]]; then container_config="${cur_container_config}" fi if [[ "${container_config}" == '?' ]]; then echo "${CONTAINER_CONFIG_HELP}" elif [[ -z "${container_config}" ]]; then echo " Container config cannot be empty." So basically, what command can I run in gcloud shell in order to set the container config reference provided in GTM. Or - can I alter that script 'simply' to have it configure a Standard instance rather than a Flexible one. Any advice gratefully received. Cheers -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/80ced3db-d938-40ca-8aa2-90f53f0d61f0n%40googlegroups.com.
