Where are all the URL's and endpoints required for Azure storage config?

I’m not able to find out all the required urls, can anyone please provide a step by step tutorial link or any hints on how exactly should I configure this?

module.exports = ({ env }) => ({
  upload: {
    config: {
      provider: 'strapi-provider-upload-azure-storage',
      providerOptions: {
        account: env('STORAGE_ACCOUNT'),
        accountKey: env('STORAGE_ACCOUNT_KEY'),
        serviceBaseURL: env('STORAGE_URL'),
        containerName: env('STORAGE_CONTAINER_NAME'),
        cdnBaseURL: env('STORAGE_CDN_URL'),
        defaultPath: 'assets',
        maxConcurrent: 10
      }
    }
  }
});

Hi,

Well i use only these one :

account: env(‘STORAGE_ACCOUNT’, {name of the resource}),
accountKey: env(‘STORAGE_ACCOUNT_KEY’, ‘{access keys in the localtorage resource}’),
containerName: env(‘STORAGE_CONTAINER_NAME’, ‘{create a container and put its name in here}’),
defaultPath: ‘assets’,
maxConcurrent: 10

image
image
image

→ Using default values is not mandatory, It’s just to for explanations nevertheless personnally, i always use fallback values.