Hello Benedikt Schmitt
You can mount existing Azure Files shares to your Linux function apps. By mounting a share to your Linux function app, you can use existing machine learning models or other data in your functions. You can use the following command to mount an existing share to your Linux function app.
az webapp config storage-account add -g MyResourceGroup -n MyUniqueApp \ --custom-id CustomId \ --storage-type AzureFiles \ --account-name MyStorageAccount \ --share-name MyShare \ --access-key MyAccessKey \ --mount-path /path/to/mount
Currently, only a storage-type
of AzureFiles
is supported. You can only mount five shares to a given function app.
https://learn.microsoft.com/en-us/azure/azure-functions/storage-considerations?tabs=azure-cli