How can i create a function in Azure using Azure CLI which will have blob storage trigger.
Tried creating function with below command found at below link but it does not have trigger option. https://docs.microsoft.com/en-us/azure/azure-functions/functions-create-first-azure-function-azure-cli
az functionapp create --deployment-source-url https://github.com/Azure-Samples/functions-quickstart --resource-group myResourceGroup --consumption-plan-location westeurope --name <app_name> --storage-account <storage_name>
Thanks in advance