Azure Storage Containers for Strapi V5

I am trying to get azure storage containers for my files and uploads via strapi v5. I am using this package which was made for strapi v4:

I am getting an error every time I try to upload an image. I have added this to my plugins.ts file:
module.exports = ({ env }) => ({
upload: {
config: {
provider: “strapi-provider-upload-azure-storage”,
providerOptions: {
authType: env(“STORAGE_AUTH_TYPE”, “default”),
account: env(“STORAGE_ACCOUNT”),
accountKey: env(“STORAGE_ACCOUNT_KEY”),//either account key or sas token is enough to make authentication
containerName: env(“STORAGE_CONTAINER_NAME”),
defaultPath: “assets”,
},
},
},
});

This topic has been created from a Discord post (1285766518482796554) to give it more visibility.
It will be on Read-Only mode here.
Join the conversation on Discord