An Azure service that stores structured NoSQL data in the cloud.
Thanks for reaching out to Microsoft Q&A.
Azure Storage can be integrated with Azure Functions and Azure Logic Apps to create powerful and automated workflows. Here's how you can achieve this integration:
Storage considerations for Azure Functions can be found in this reference document
https://learn.microsoft.com/en-us/azure/azure-functions/storage-considerations?tabs=azure-cli
|Storage service|Functions usage|
| -------- | -------- |
|Azure Blob storage|Maintain bindings state and function keys1.
Deployment source for apps that run in a Flex Consumption plan.
Used by default for task hubs in Durable Functions.
Can be used to store function app code for Linux Consumption remote build or as part of external package URL deployments.|
|Azure Blob storage|Maintain bindings state and function keys1. Deployment source for apps that run in a Flex Consumption plan. Used by default for task hubs in Durable Functions. Can be used to store function app code for Linux Consumption remote build or as part of external package URL deployments.|
|Azure Files2|File share used to store and run your function app code in a Consumption Plan and Premium Plan.|
|Azure Queue storage|Used by default for task hubs in Durable Functions. Used for failure and retry handling in specific Azure Functions triggers. Used for object tracking by the Blob storage trigger.|
|Azure Table storage|Used by default for task hubs in Durable Functions.|
For logic apps, you can use it as managed connectors. reference link: https://learn.microsoft.com/en-us/azure/connectors/connectors-create-api-azureblobstorage?tabs=consumption
Please do not forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.