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.