The Google documentation for Cloud Run states that you can "pull the token out of the Authorization header" (docs here) in order to validate it and obtain further information about the requesting user.
However, when reading the Authorization
header while processing the request, it appears that parts of the token have been redacted after passing through Google's auth frontend. E.g
Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6ImY2ZjgwZjM3ZjIxYzIz.SIGNATURE_REMOVED_BY_GOOGLE
Is this a bug in Cloud Run or do we need to do something different to obtain the full Bearer token?