When configuring authentication for a bucket using oauth, Commvault provides straight forward steps however when looking into gcloud parameters, what should be entered in the "REDIRECT_URI"
https://cloud.google.com/iam/docs/workforce-manage-oauth-app#create
gcloud iam oauth-clients create APP_OAUTH_CLIENT_ID \
--project=PROJECT_ID \
--location=global \
--client-type="CONFIDENTIAL_CLIENT" \
--display-name="My OAuth application" \
--description="An application registration for MyApp" \
--allowed-scopes="https://www.googleapis.com/auth/cloud-platform" \
--allowed-redirect-uris="REDIRECT_URI" \
--allowed-grant-types="authorization_code_grant"
Thanks