I can't find or delete my working access tokens for R2

I am managing files with R2 using the S3 api (in node). I have created an access key and secret key a long time ago (I can't remember how or where I created them). These credentials got leaked and I want to delete the old ones and create new ones. The problem is that I can't find the access token in the dashboard anywhere, but it still works.

The
process.env.ACCESS_TOKEN
is
32
long with lowercase letters and numbers.
The
process.env.S3_SECRET_KEY
is
64
long with lowercase letters and numbers.

I'm using the code below:
const s3 = require('@aws-sdk/client-s3');

const s3Client = new s3.S3Client({
    region: 'us-east-1',
    endpoint: process.env.S3_ENDPOINT,
    credentials: {
        accessKeyId: process.env.S3_ACCESS_KEY,
        secretAccessKey: process.env.S3_SECRET_KEY
    }
});


TLDR: I have a working access token for R2 using S3 api, but can't find it in the dashboard.
image.png
image.png
image.png
Was this page helpful?
I can't find or delete my working access tokens for R2 - Cloudflare Developers