アプリケーション設定 AzureWebJobsStorage
から辿れるので、ゴニョゴニョすると一覧表示できる。
shell.sh
#!/bin/bash -l
set -Ceu
ids=`az functionapp list --query '[].id' -o tsv`
for id in $ids; do
read rg name <<< $(echo $id | awk -F '/' '{print $5, $9}')
storage=$(az functionapp config appsettings list -g $rg -n $name --query "[?name == 'AzureWebJobsStorage'].value" -o tsv | awk -F ';' '{for(i = 1; i <= NF; i++){printf $i "\n"}}' | grep AccountName | awk -F '=' '{print $2}')
echo $rg, $name, $storage
done
Usage
./shell.sh | column -t