EN VI

how to check which storage accounts are linked with the azure logic apps?

2024-03-14 17:30:07
how to check which storage accounts are linked with the azure logic apps

We have plenty of logic apps and storage accounts but while creating logic app, we can see the available storage accounts in that location:

enter image description here

But our logic apps are named like: enter image description here

When we check the storage account file shares, it is named with different at the end of the connected application:

enter image description here

Is there any other way to check which logic app is linked with the storage account either using Portal or Command line?

Solution:

Storage account gets created for Standard logic app as Hosting option is available only when creating a Standard logic app.

enter image description here

  • There is no Hosting tab for Consumption logic app.

enter image description here

  • You can check the storage account name from the value of AzureWebJobsStorage in Portal.

enter image description here

  • I have used the below command to get the storage account name linked with the standard logic app.
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] }
Answer

Login


Forgot Your Password?

Create Account


Lost your password? Please enter your email address. You will receive a link to create a new password.

Reset Password

Back to login