We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In order to authenticate through OIDC it would be really useful if the Orb could support:
gcloud auth login --brief --cred-file ./myCredFile
Currently only the following authentication approach is used:
gcloud auth activate-service-account --key-file ./myKeyFile
When following the CircleCI documentation to authenticate via OIDC the credential file is generated as a result of this step:
gcloud iam workload-identity-pools create-cred-config
However, this credentials file is incompatible with the service account key file you would usually use to authenticate:
// line 761 of https://circleci.com/developer/orbs/orb/ovotech/terraform?version=1.11.15 export GOOGLE_APPLICATION_CREDENTIALS=/tmp/google_creds gcloud auth activate-service-account --key-file /tmp/google_creds
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In order to authenticate through OIDC it would be really useful if the Orb could support:
Currently only the following authentication approach is used:
When following the CircleCI documentation to authenticate via OIDC the credential file is generated as a result of this step:
However, this credentials file is incompatible with the service account key file you would usually use to authenticate:
The text was updated successfully, but these errors were encountered: