diff --git a/go/vt/mysqlctl/gcsbackupstorage/gcs.go b/go/vt/mysqlctl/gcsbackupstorage/gcs.go index b6fbcfdc69c..54bea5aa3af 100644 --- a/go/vt/mysqlctl/gcsbackupstorage/gcs.go +++ b/go/vt/mysqlctl/gcsbackupstorage/gcs.go @@ -230,7 +230,7 @@ func (bs *GCSBackupStorage) client(ctx context.Context) (*storage.Client, error) // the creation context, so we create a new one, but // keep the span information. ctx = trace.CopySpan(context.Background(), ctx) - authClient, err := google.DefaultClient(ctx) + authClient, err := google.DefaultClient(ctx, storage.ScopeFullControl) if err != nil { return nil, err }