1

Is there a Get-AzureRmVmssDiagnosticsExtension. How do I get if a scale set has diagnostics enabled and what storage it is using.

Jason Ye
  • 13,710
  • 2
  • 16
  • 25
kumar
  • 8,207
  • 20
  • 85
  • 176

1 Answers1

2

As far as I know, there is no command to get the storage account directly.
But we can use PowerShell to the information of vmss, like this:

PS C:\Users> get-azurermvmss -ResourceGroupName  vmss -VMScaleSetName vmss

enter image description here

Jason Ye
  • 13,710
  • 2
  • 16
  • 25