Unable to retrieve storage account properties using PowerShell
Running this PowerShell command
Connect-AzAccount
$sa = Get-AzStorageAccount -ResourceGroupName "myResourceGroup" -Name "mySA"
$sa | Format-List -Property *
Most of the properties sow up empty. For example: I see the Minimum TLS Version set to TLS 1.0 in the UI but the property shows empty in the output of the command above
