Where are all the URL's and endpoints required for config? in Azure Storage Account

Rishabh Gupta 0 Reputation points
2022-02-13T15:08:38.1+00:00

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'),
cdnBaseU

Azure Storage Accounts
Azure Storage Accounts
Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
3,093 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. deherman-MSFT 36,746 Reputation points Microsoft Employee
    2022-02-14T18:20:35.517+00:00

    anonymous user
    I understand you want to know where to find the above variables for your storage account. Please correct me if I am wrong.

    STORAGE_ACCOUNT should be the Storage account name. STORAGE_ACCOUNT_KEY can be found on the Access keys tab under Security + Networking. STORAGE_URL will be the Blob service URL under the Endpoints tab under Settings. STORAGE_CONTAINER_NAME should be the container name, you can view a list of containers under the Containers tab.

    174212-image.png

    Hope this helps! Let us know if you have further questions or need more assistance.

    -------------------------------

    Please don’t forget to "Accept the answer" and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.