Azure storage blob integration for editor cache - configuration

Hi,
I am attempting to configure Azure Blob Storage for editor caching using the following JSON configuration in default.json:
“storage”: {
“name”: “storage-az”,
“region”: “”,
“endpoint”: “https://.blob.core.windows.net/”,
“bucketName”: “”,
“storageFolderName”: “”,
“cacheFolderName”: “”,
“urlExpires”: 604800,
“accessKeyId”: “”,
“secretAccessKey”: “”,
“sslEnabled”: false,
“s3ForcePathStyle”: false,
“externalHost”: “”
}

However, I am encountering a “download failed” error during blob access. Can someone help me refactor this configuration properly to support Azure Blob Storage authentication and endpoint conventions? Specifically:
What properties should replace bucketName, accessKeyId, and secretAccessKey for Azure Blob Storage?
Should sslEnabled be true or false for Azure Blob Storage?
Is the use of s3ForcePathStyle valid or required for Azure Blob Storage?
What is the recommended way to specify the container and folders in this config for Azure Blob Storage?

Hello @Deepika
It should work, previously we tested it with such data:

{
  "storage": {
    "name": "storage-az",
    "endpoint": "https://<storage-account>.blob.core.windows.net",
    "bucketName": "<container-name>",
    "accessKeyId": "<storage-account>",
    "secretAccessKey": "*****"
  }
}

Please reproduce the situation > make a screenshot of the error > collect entire DS logs folder and your default.json file, we will check them out.

Hi Alexandre,
Tried in the mentioned format and it worked… Thank yu!

Well done!
Fell free to contact us if you face any issues.