Strapi Cloudinary Upload Presets Help

Hi,
I am facing the same issue. My plugin.js is configured like so:

module.exports = ({ env }) => ({
    upload: {
        provider: 'cloudinary',
        providerOptions: {
            cloud_name: env('CLOUDINARY_NAME'),
            api_key: env('CLOUDINARY_KEY'),
            api_secret: env('CLOUDINARY_SECRET'),
            upload_preset: env('CLOUDINARY_UPLOAD_PRESET'),
        },
    },
});

but the upload preset is ignored. I am trying to upload images to a specific folder and apply some async transformation.

Resources:
https://cloudinary.com/documentation/cloudinary_sdks#configuration_parameters