I'm making a simple Azure Function that works on a blob trigger.
I decided to deploy it using the CLI. I can see the function in my Azure Functions overview tab. Let me give a little bit of a context here: My blob storage is on a storage account called A where I have a container called storage. When I created my Azure Function, a new storage account & resource group were created because for some reason I wasn't able to deploy linux workers on my existing ones. So now I basically have one storage account for my Azure Functions and a storage account with a container where I upload power point files.
After deploying it, the function doesn't seem to work at all. In my Log stream I see an error that says
2025-05-06T13:23:19Z [Warning] Error response [xxx] 404 The specified queue does not exist. (00.0s)
This is weird to me because I use blob trigger and I don't know why does it expect a queue? I tried almost anything from the Internet to solve this but my knowledge is limited as I've started using the Azure Functions more active recently. I have set my BlobStorageConnectionString to my storage account key where I upload my files. AzureWebJobsStorage points out to the storage account that was made during the creation of the Azure Function, which I assume is okay?
So, is there a way to fix this error? If anyone has ever stumbled upon an issue like this, can you share more info about how can I resolve this problem and move forward?

AzureWebJobsStorageto point to the storage account that contains thepptx-storagecontainer (Storage Account A).[Warning] Error response [xxx] 403 This request is not authorized to perform this operation. (00.0s). Should I give some access to my Azure Function so it's able to connect with the Storage account?Networkingsettings? Make surePublic access from all networksis enabled so the Function can connect.