How to set Cloudinary upload option

If you already use the cloudinary plugin, that means you already have ./config/plugins.js file with the following code:

module.exports = ({ env }) => ({
  // ...
  upload: {
    provider: 'cloudinary',
    providerOptions: {
      cloud_name: env('CLOUDINARY_NAME'),
      api_key: env('CLOUDINARY_KEY'),
      api_secret: env('CLOUDINARY_SECRET'),
      // you can add any config option here, it will be passed to cloudinary.config()
    },
  },
  // ...
});

List of available options: