Let's say we have an app deployed to Azure. App has external files not bundled with it, files which are required for app to operate. They are seperate but are essentially part of the software. Normally without a cloud service, we put these files on a disk path and tell the path to app using an environment variable.
Since writing to disk may be non persistent in a cloud environment, is this a case for using BlobStorage? Or is it for accessing files from anywhere, any app, in a manner similar to Dropbox? These files are not required to be available online, only the app needs to access them, so these kind of access is not required but also not appropriate.