I’m getting the following error when authenticating to GCP:
#!/bin/bash -eo pipefail
echo ${GCLOUD_SERVICE_KEY} | gcloud auth activate-service-account --key-file=-
gcloud --quiet config set project ${GOOGLE_PROJECT_ID}
gcloud --quiet config set compute/zone ${GOOGLE_COMPUTE_ZONE}
gcloud --quiet auth configure-docker
ERROR: (gcloud.auth.activate-service-account) There was a problem refreshing your current auth tokens: invalid_grant: Invalid JWT Signature.
I followed the steps outlined in https://circleci.com/docs/2.0/google-auth/ and still no luck.
I’ve tried using the env var in post raw JSON and base64, neither work.
Do I need to do something in order for my workflow to take the new env vars?
