Was wondering if there's a way to chain az cli command together and how they should work?
For example, I am trying to pipe one az storage account
command output into another
Also the az storage account list
command can return multiple values
az storage account list --subscription '<subscription>' --query "<query>" |
az storage account update --name @ --allow-blob-public-access false
The above doesn't seem to work, and was wondering if there's a proper way to do it?