We have plenty of logic apps and storage accounts but while creating logic app, we can see the available storage accounts in that location:
But our logic apps are named like:
When we check the storage account file shares, it is named with different at the end of the connected application:
Is there any other way to check which logic app is linked with the storage account either using Portal or Command line?
Storage account gets created for Standard logic app as Hosting option is available only when creating a Standard logic app.
AzureWebJobsStorage
in Portal.az logicapp config appsettings list --name <logicAppName> -g <resourceGroup> --query "[?name=='AzureWebJobsStorage'].value" --out tsv | Select-String -Pattern 'AccountName=[^;]*' | ForEach-Object { $_.Matches.Groups[0].Value.Split('=')[1] }