Skip to content

Instantly share code, notes, and snippets.

@Splaxi
Created October 19, 2021 18:15
Show Gist options
  • Save Splaxi/845c626b4344a9821c3dc507ff9cf04a to your computer and use it in GitHub Desktop.
Save Splaxi/845c626b4344a9821c3dc507ff9cf04a to your computer and use it in GitHub Desktop.
List all integration accounts, across regions, with sku details
Get-AzIntegrationAccount | Select-Object Name, Location, @{Name = "Sku"; Expression = {$_.Sku.Name}}, @{Name = "Subscription"; Expression = {$_.Id.ToString().Split('/')[2]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment