I’m trying to deploy my Azure Function App using the Azure CLI command:
az functionapp deployment source config-zip -g "func" -n "testfunc007" --src "function_app.zip"
But I’m encountering the following error:
The Azure CLI does not support this deployment path. Please configure the app to deploy from a remote package using the steps here
I’m not sure why this error is happening or how to fix it. Could you please help me understand what might be causing this and how to correctly deploy the function app using a zip package?
The Azure CLI does not support this deployment path. Please configure the app to deploy from a remote package using the steps here
This error occurs when the storage account is not set correctly with the storage account and also set the below Environment Variables with correct values. It should work
I am able to deploy to my function app after setting up below vales in Environment Variables section:
The when I executed below commands, it works :
az functionapp deployment source config-zip -g "resgrpname" -n "functionappnme" --src "test.zip"
Output:
If the issue still persists, check if the Storage account is public or not. if not use the vnet with function app with which it is integrated in storage account.